-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhobbies.html
83 lines (76 loc) · 3.08 KB
/
hobbies.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hobbies | Kristy Burge</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">Kristy Burge</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="hobbies.html">Hobbies</a></li>
</ul>
</div>
<header>
<img src="images/kristyburge.jpg" alt="Kristy Burge" class="profile-image">
<h1 class="tag name">Hobbies</h1>
<p class="tag location">These are a few of my favorite things (outside of coding)</p>
</header>
<main class="flex">
<div class="card">
<h2>Hobbies</h2>
<p>I believe that it's important to take time away from our screens to live our lives. </p>
<p>Outside of coding, I enjoy these things:</p>
<ul class="hobbies-list">
<li>Spending time with my husband and our beagle</li>
<li>Rescuing dogs</li>
<li>Traveling (near and far)</li>
<li>Cooking</li>
<li>Hiking</li>
<li>Kettlebells and lifting heavy weights</li>
<li>Researching alternative health and functional fitness, like:
<ul>
<li>Keto</li>
<li>Paleo</li>
</ul>
</li>
</ul>
<figure>
<img src="images/hiking-with-chester-beagle.jpg" alt="Hiking with Chester" class="hiking-pic">
<figcaption>Hiking with Chester at Ancient Lakes in Quincy, Washington</figcaption>
</figure>
</div>
<div class="card">
<h2>Some of the Places I've Been Lately:</h2>
<figure>
<img src="images/kristy-and-harrison-in-chile.jpg" alt="In front of the Andes Mountains, Chile" class="travel-pic">
<figcaption>My husband and I in front of the beautiful Andes Mountains in Chile</figcaption>
</figure>
<ul class="places">
<li>Santiago, Chile</li>
<li>Flagstaff, Arizona</li>
<li>Taos, New Mexico</li>
<li>Boise, Idaho</li>
<li>Spokane, Washington</li>
<li>Seattle, Washington</li>
</ul>
<figure>
<img src="images/grand-canyon.jpg" alt="Grand Canyon" class="travel-pic">
<figcaption>The breathtaking Grand Canyon outside of Flagstaff, Arizona</figcaption>
</figure>
</div>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/kristyburge" class="social twitter" target="_blank">Twitter</a></li>
<li><a href="https://linkedin.com/in/kristyburge" class="social linkedin" target="_blank">LinkedIn</a></li>
<li><a href="https://github.com/kristyburge" class="social github" target="_blank">GitHub</a></li>
</ul>
<p class="copyright">Copyright 2018, Kristy Burge</p>
</footer>
</body>
</html>