-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.32 KB
/
index.html
File metadata and controls
39 lines (35 loc) · 1.32 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">
<title>Neeoder</title>
<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@700&family=Space+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="particles-js"></div>
<nav>
<a href="index.html" class="logo">NEEODER</a>
<ul>
<li><a href="projects.html">Projects</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<main>
<section class="hero">
<h1 class="hero-title">NEEODER</h1>
<p class="hero-subtitle">Developer and stuff</p>
</section>
<section class="reveal-section">
<h2>Wanna see my work?</h2>
<a href="projects.html" class="cta-button">View Projects</a>
</section>
</main>
<script type="module" src="script.js"></script>
</body>
</html>