-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (39 loc) · 1.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Matt's Homepage</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<span class="name"> Matt Kindig </span>
<nav class="Buttons">
<a class="active" href="index.html">HOME</a>
<a href="about.html">ABOUT</a>
<a href="portfolio.html">PORTFOLIO</a>
</nav>
</header>
<main>
<h1>Developer, Businessman & Musician</h1>
<h2>
Devoted to growth, prosperiety & customer obsession across multiple
sectors of enterprise.
</h2>
<img class="stonk" src="stonksmemephoto.jpeg" />
<h3 class="quote">
" If you believe in yourself and have dedication and pride - and never
quit, you'll be a winner. The price of victory is high but so are the
rewards."
<br />
- Bear Bryant
</h3>
</main>
<footer>
<p class="watermark">Kindig Enterprises© 2023</p>
</footer>
<script src="javascript.js"></script>
</body>
</html>