File size: 1,324 Bytes
74a08e5 9c44aa0 74a08e5 9c44aa0 74a08e5 9c44aa0 74a08e5 9c44aa0 74a08e5 |
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 52 53 |
<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="intro">
<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>
<div class="project">
<h3>Sentiment Analysis</h3>
<p>Web app untuk analisis sentimen dalam Bahasa Indonesia.</p>
</div>
<div class="project">
<h3>Visualisasi Squad Sepak Bola</h3>
<p>Tools untuk membuat formasi tim sepak bola dengan statistik pemain.</p>
</div>
</section>
<section id="contact">
<h2>Contact</h2>
<form>
<input type="text" placeholder="Nama" required>
<input type="email" placeholder="Email" required>
<textarea placeholder="Pesan" rows="4" required></textarea>
<button type="submit">Kirim</button>
</form>
</section>
</main>
<footer>
<button id="chatButton">Tanya Saya</button>
<p>© 2025 [Nama Kamu]</p>
</footer> |