Update index.html
Browse files- index.html +31 -19
index.html
CHANGED
|
@@ -8,22 +8,20 @@
|
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
<header>
|
| 11 |
-
<
|
| 12 |
-
|
| 13 |
-
<
|
| 14 |
-
<
|
| 15 |
-
<
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
| 19 |
</header>
|
| 20 |
|
| 21 |
<main>
|
| 22 |
-
<section id="about">
|
| 23 |
-
<h2>Hi, Saya [Nama Kamu]</h2>
|
| 24 |
-
<p>Seorang developer AI dan Blockchain yang selalu belajar.</p>
|
| 25 |
-
</section>
|
| 26 |
-
|
| 27 |
<section id="skills">
|
| 28 |
<h2>Skills</h2>
|
| 29 |
<ul>
|
|
@@ -35,16 +33,28 @@
|
|
| 35 |
|
| 36 |
<section id="projects">
|
| 37 |
<h2>Projects</h2>
|
| 38 |
-
<
|
| 39 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
</section>
|
| 41 |
|
| 42 |
<section id="contact">
|
| 43 |
<h2>Contact</h2>
|
| 44 |
-
<form>
|
| 45 |
-
<
|
| 46 |
-
<input type="
|
| 47 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
<button type="submit">Kirim</button>
|
| 49 |
</form>
|
| 50 |
</section>
|
|
@@ -53,5 +63,7 @@
|
|
| 53 |
<footer>
|
| 54 |
<p>© 2025 [Nama Kamu]</p>
|
| 55 |
</footer>
|
|
|
|
|
|
|
| 56 |
</body>
|
| 57 |
</html>
|
|
|
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
<header>
|
| 11 |
+
<div class="container">
|
| 12 |
+
<h1>Selamat Datang di Portfolio Saya</h1>
|
| 13 |
+
<nav>
|
| 14 |
+
<button class="menu-toggle" aria-label="Toggle Navigation">☰</button>
|
| 15 |
+
<ul class="nav-links">
|
| 16 |
+
<li><a href="#skills">Skills</a></li>
|
| 17 |
+
<li><a href="#projects">Projects</a></li>
|
| 18 |
+
<li><a href="#contact">Contact</a></li>
|
| 19 |
+
</ul>
|
| 20 |
+
</nav>
|
| 21 |
+
</div>
|
| 22 |
</header>
|
| 23 |
|
| 24 |
<main>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
<section id="skills">
|
| 26 |
<h2>Skills</h2>
|
| 27 |
<ul>
|
|
|
|
| 33 |
|
| 34 |
<section id="projects">
|
| 35 |
<h2>Projects</h2>
|
| 36 |
+
<ul>
|
| 37 |
+
<li>
|
| 38 |
+
<strong>Sentiment Analysis:</strong> Web app untuk analisis sentimen dalam Bahasa Indonesia.
|
| 39 |
+
</li>
|
| 40 |
+
<li>
|
| 41 |
+
<strong>Visualisasi Squad Sepak Bola:</strong> Tools untuk membuat formasi tim sepak bola dengan statistik pemain.
|
| 42 |
+
</li>
|
| 43 |
+
</ul>
|
| 44 |
</section>
|
| 45 |
|
| 46 |
<section id="contact">
|
| 47 |
<h2>Contact</h2>
|
| 48 |
+
<form action="#" method="post">
|
| 49 |
+
<label for="name">Nama:</label>
|
| 50 |
+
<input type="text" id="name" name="name" required>
|
| 51 |
+
|
| 52 |
+
<label for="email">Email:</label>
|
| 53 |
+
<input type="email" id="email" name="email" required>
|
| 54 |
+
|
| 55 |
+
<label for="message">Pesan:</label>
|
| 56 |
+
<textarea id="message" name="message" rows="4" required></textarea>
|
| 57 |
+
|
| 58 |
<button type="submit">Kirim</button>
|
| 59 |
</form>
|
| 60 |
</section>
|
|
|
|
| 63 |
<footer>
|
| 64 |
<p>© 2025 [Nama Kamu]</p>
|
| 65 |
</footer>
|
| 66 |
+
|
| 67 |
+
<script src="script.js"></script>
|
| 68 |
</body>
|
| 69 |
</html>
|