-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
56 lines (56 loc) · 3.22 KB
/
about.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>
<head>
<title>About Me</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="./style.css" />
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Cedarville+Cursive&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Cedarville+Cursive&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav id="header-links">
<a class="nav-links" href="./home.html">Home</a>
<a class="nav-links" href="./about.html">About</a>
<a class="nav-links" href="./portfolio.html">Portfolio</a>
<a class="nav-links" href="./contact.html">Contact</a>
</nav>
</header>
<main id="main-about">
<section class="hobby-container">
<section class="hobby">
<h2>Camping & Hiking</h2>
<img id="about-me-img1" src="./images/mt-whitney.png" />
<p class="about-me">
My family and I love spending time camping and hiking together. It gives us
the chance to explore new trails at our own pace. One of our favorite adventures
was conquering Mt. Whitney, the tallest peak in the contiguous U.S. standing
at 14,505 feet! The hike was long and grueling, but every step was worth it
for the stunning views we experienced along the way.
</p>
</section>
<section class="hobby">
<h2>Exercise</h2>
<img id="about-me-img2" src="./images/ironman.png" />
<p class="about-me">
I enjoy exercising, especially swimming, running, and cycling, as they keep me active
and continually challenge me. A few years ago, I achieved a lifelong dream of completing
a full Ironman. The months of early-morning training were tough but incredibly rewarding
because the journey taught me about resilience, discipline, and pushing my limits.
</p>
</section>
<section class="hobby">
<h2>Cooking</h2>
<img id="about-me-img3" src="./images/cooking.png" />
<p class="about-me">
Although I’m not the best cook, I love experimenting with all kinds of recipes and discovering
new flavors. One of my signature dishes is Coconut Mochi Cake, which is a favorite among
friends and family. I also enjoy making hearty soups like chili or chicken tortilla soup. One
of my personal favorites to prepare and eat is sous vide duck—it’s a fun and rewarding way to
create a perfectly cooked, flavorful dish.
</p>
</section>
</section>
</main>
</body>
</html>