-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (73 loc) · 4.48 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/base.css">
<title>WDD 131 - Dynamic Web Fundamentals - Steven Thomas</title>
<meta name="author" content="Steven Thomas">
<meta name="description" content="Steven Thomas, WDD131 - Dynamic Web Fundamentals, Home page">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;400&display=swap" rel="stylesheet">
<script defer src="scripts/getdates.js"></script>
</head>
<body>
<div class="parent">
<header>
<h1 class="header-content">
WDD 131: Dynamic Web Fundamentals - Steven C. Thomas
</h1>
<nav>
<div class="nav-item">
<a href="https://www.linkedin.com/in/steven-thomas-8383b1282" target="_blank" rel="noopener" title="Open in new tab">LinkedIn</a>
</div>
<div class="nav-item">
<a href="https://byui.instructure.com/" target="_blank" rel="noopener" title="Open in new tab">I-Learn</a>
</div>
<div class="nav-item">
<a href="https://www.churchofjesuschrist.org/study/scriptures/bofm/1-ne/3?lang=eng&id=p7#p7" target="_blank" rel="noopener" title="Open in new tab">Scripture</a>
</div>
<div class="nav-item">
<a href="#" target="_blank" rel="noopener" title="Open in new tab">Final Project</a>
</div>
</nav>
</header>
<main>
<section class="card">
<h2>About Me</h2>
<div class="row">
<p class="text">
My name is Steven Thomas and I'm a server at a local restaurant here in Ketchikan, Alaska. I served a mission in the Santa Ana El Salvador mission (The best mission in the world ). Something interesting about my mission is that due to the Covid-19 pandemic, I was 19 when I first left for my mission and 23 when I returned home in 2022.
</p>
<img src="images/trigger.jpg" alt="My dog Trigger and I">
</div>
<h3>Ketchikan, Alaska</h3>
<div class="row">
<div class="image-container">
<img src="images/mountain.jpg" alt="A mountain near Ketchikan">
<p>A mountain near Ketchikan, Alaska</p>
</div>
<p class="text">
Ketchikan, Alaska, located on Revillagigedo Island, is known as the "Salmon Capital of the World" for its thriving fishing industry. Situated in the heart of the Tongass National Forest, the largest temperate rainforest in the world, Ketchikan offers visitors stunning natural beauty and abundant wildlife.
The city is also famous for its Native Alaskan culture, particularly its impressive collection of totem poles, which can be seen at sites like Totem Bight State Park and the Totem Heritage Center. Ketchikan's history is deeply connected to the Tlingit, Haida, and Tsimshian peoples.
With a wet, maritime climate, Ketchikan experiences significant rainfall and is a popular stop for cruise ships in Southeast Alaska. Visitors enjoy activities such as fishing, hiking, and exploring Creek Street, a historic boardwalk. Tourism, fishing, and timber are key industries that sustain the local economy.
</p>
</div>
</section>
<section class="card">
<h2>Web Dev Resources</h2>
<ul>
<li><a href="https://www.w3schools.com" target="_blank" rel="noopener" title="Open in new tab">W3 Schools</a></li>
<li><a href="https://developer.mozilla.org/en-US/" target="_blank" rel="noopener" title="Open in new tab">MDN Web Docs</a></li>
<li><a href="https://www.byupathway.edu" target="_blank" rel="noopener" title="Open in new tab">BYU Pathways</a></li>
</ul>
</section>
</main>
<footer>
<p><span id="currentYear"></span> | Steven Thomas | Alaska, USA</p>
<p id="lastModified"></p>
</footer>
</div>
</body>
</html>