|
<!DOCTYPE html> |
|
<html lang="id"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Portfolio Saya</title> |
|
<link rel="stylesheet" href="style.css"> |
|
</head> |
|
<body> |
|
<header> |
|
<h1>Selamat Datang di Portfolio Saya</h1> |
|
<nav> |
|
<ul> |
|
<li><a href="#skills">Skills</a></li> |
|
<li><a href="#projects">Projects</a></li> |
|
<li><a href="#contact">Contact</a></li> |
|
</ul> |
|
</nav> |
|
</header> |
|
|
|
<main> |
|
<section id="about"> |
|
<h2>Hi, Saya [Nama Kamu]</h2> |
|
<p>Seorang developer AI dan Blockchain yang selalu belajar.</p> |
|
</section> |
|
|
|
<section id="skills"> |
|
<h2>Skills</h2> |
|
<ul> |
|
<li>Generative AI</li> |
|
<li>Blockchain</li> |
|
<li>Software Engineering</li> |
|
</ul> |
|
</section> |
|
|
|
<section id="projects"> |
|
<h2>Projects</h2> |
|
<p><strong>Sentiment Analysis:</strong> Web app untuk analisis sentimen dalam Bahasa Indonesia.</p> |
|
<p><strong>Visualisasi Squad Sepak Bola:</strong> Tools untuk membuat formasi tim sepak bola dengan statistik pemain.</p> |
|
</section> |
|
|
|
<section id="contact"> |
|
<h2>Contact</h2> |
|
<form> |
|
<input type="text" name="name" placeholder="Nama" required> |
|
<input type="email" name="email" placeholder="Email" required> |
|
<textarea name="message" placeholder="Pesan" required></textarea> |
|
<button type="submit">Kirim</button> |
|
</form> |
|
</section> |
|
</main> |
|
|
|
<footer> |
|
<p>© 2025 [Nama Kamu]</p> |
|
</footer> |
|
</body> |
|
</html> |