-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterests.html
56 lines (51 loc) · 2 KB
/
interests.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Seth Brown's Interests</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name"><a href="index.html">Seth Brown</a></li>
<li><a href="index.html">Home</a></li>
<li><a href="interests.html">Interests</a></li>
</ul>
</div>
<header>
<img src="images/seth.jpg" alt="Picture of Seth Brown" class="profile-image">
<h1 class="tag name">Hello, I’m Seth.</h1>
<p class="tag location">My home is Athens, Georgia.</p>
</header>
<main class="flex main-interests">
<div class="card">
<h2>Interests</h2>
<p>I have a wide variety of interests that include:</p>
<ul class="skills-interests">
<li>Gaming</li>
<li>Programming</li>
<li>Writing</li>
<li>Hiking</li>
<li>Backpacking</li>
<li>Watching Atlanta United</li>
</ul>
<p>I'm constantly discovering new areas of interest and have to work hard at focusing on one long enough to master!</p>
</div>
<div class="card">
<h2>Pepper</h2>
<img src="images/pepper.jpg" alt="Picture of my dog Pepper" class="pepper-image">
<p>I have the most wonderful rescue dog named Pepper. She is the sweetest thing on earth!</p>
</div>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/wsethbrown" class="social twitter">Twitter</a></li>
<li><a href="https://www.linkedin.com/in/wseth-brown/" class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/wsethbrown" class="social github">Github</a></li>
</ul>
<p class="copyright">©2020, Seth Brown</p>
</footer>
</body>
</html>