-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Homepage</title>
<link rel="stylesheet" href="styles.css">
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body>
<header class="container">
<nav>
<a href="index.html"><i data-feather="home"></i> Home</a>
<div>
<ul style="display: flex; list-style: none; padding: 0; margin: 0;">
<li style="margin-right: 1rem;"><a href="about.html"><i data-feather="user"></i> About</a></li>
<li style="margin-right: 1rem;"><a href="blog.html"><i data-feather="book-open"></i> Blog</a></li>
<li style="margin-right: 1rem;"><a href="projects.html"><i data-feather="folder"></i> Projects</a></li>
</ul>
<select class="theme-selector">
<option value="light">Light</option>
<option value="dark">Dark</option>
</select>
</div>
</nav>
</header>
<main class="container">
<h1>Welcome to my Developer Profile</h1>
<p>I'm a software engineer passionate about building innovative and user-friendly applications. Explore my projects and blog to learn more about my work.</p>
<section>
<h2><a href="projects.html">Projects</a></h2>
<p>Check out my latest projects.</p>
</section>
<section>
<h2><a href="blog.html">Blog</a></h2>
<p>Read my latest blog posts.</p>
</section>
<section>
<h2><a href="about.html">About</a></h2>
<p>Learn more about me.</p>
</section>
</main>
<footer class="container">
<p>© 2023 My Developer Profile</p>
</footer>
<script src="script.js"></script>
<script>
feather.replace()
</script>
</body>
</html>