File size: 1,558 Bytes
79d3cd6
 
 
 
 
 
d5cf11c
79d3cd6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d5cf11c
 
79d3cd6
 
 
 
 
d5cf11c
 
 
79d3cd6
 
 
 
 
 
d5cf11c
79d3cd6
 
 
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
54
55
56
57
<!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>