-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (46 loc) · 1.62 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>Yos' Portfolio</title>
<link rel="stylesheet" href="styles.css">
<script defer src="script.js"></script>
</head>
<body>
<header>
<nav>
<h1>Yos</h1>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
<li><button id="dark-mode-toggle">🌙</button></li>
</ul>
</nav>
</header>
<div class="container">
<section class="section-box" id="hero">
<h2>Hi, I'm Yos</h2>
<p>A Try-Hard Developer | Owner of ApolloFlightProgram</p>
<a href="#projects" class="btn">View My Work</a>
</section>
<section class="section-box" id="about">
<h2>About Me</h2>
<p>Just a foreign Indonesian student, 13,000 KM from home, trying to create on the other face of the world.</p>
</section>
</div>
<section class="section-box" id="projects">
<h2>Projects</h2>
<ul id="projects-list"></ul>
</section>
<section class="section-box" id="contact">
<h2>Contact Me</h2>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>GitHub: <a href="https://github.com/yossebastiands" target="_blank">https://github.com/yossebastiands</a></p>
</section>
<footer>
<p>© 2025 Yos. All rights reserved.</p>
</footer>
</body>
</html>