-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.43 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.43 KB
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 name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/8234e46aad.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
<title>Navigation Menu</title>
</head>
<body>
<div class="wrapper">
<section class="intro">
<header class="img">
<img src="./wolfie.png" alt="Introductory Image">
</header>
<div class="intro-box">
<h1>Index to all projects</h1>
<p>
Hello! This is an ongoing learning/testing website where I try and
complete coding challenges I've seen online and learn more on how to
become a top tier full stack developer. Below are the links to different
projects that I am working on. Enjoy!
</p>
</div>
</section>
<div class="main-nav">
<ul class="contents">
<li><a href="/Coding_Challenges/index.html">Coding Challenges</a></li>
<li><a href="/School_Projects/index.html">School Projects</a></li>
<li><a href="/Learning_HTML/index.html">Learning HTML</a></li>
<li><a href="/Learning_CSS/index.html">Learning CSS</a></li>
<li><a href="/Learning_Scripts/index.html">Learning Scripts</a></li>
<li><a href="/Mock_Sites/index.html">Mock Websites</a></li>
</ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>