File size: 3,320 Bytes
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
<!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>
<style>
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background: #6a0dad;
color: white;
padding: 1rem 0;
text-align: center;
}
header h1 {
font-size: 1.8rem;
}
nav {
margin-top: 1rem;
}
nav ul {
display: flex;
justify-content: center;
list-style: none;
padding: 0;
margin: 0;
}
nav ul li {
margin: 0 1rem;
}
nav ul li a {
text-decoration: none;
color: white;
}
main {
padding: 1rem;
}
section {
margin-bottom: 2rem;
text-align: center;
}
section h2 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #6a0dad;
}
#skills ul, #projects ul {
list-style: none;
padding: 0;
}
#skills ul li, #projects ul li {
margin: 0.5rem 0;
}
form {
max-width: 400px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 1rem;
}
form input, form textarea {
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 5px;
}
form button {
background: #6a0dad;
color: white;
border: none;
padding: 0.5rem;
border-radius: 5px;
cursor: pointer;
}
form button:hover {
background: #530a85;
}
footer {
text-align: center;
padding: 1rem;
background: #f8f8f8;
}
/* Responsive Styles */
@media (max-width: 768px) {
header h1 {
font-size: 1.5rem;
}
nav ul {
flex-direction: column;
gap: 0.5rem;
}
section h2 {
font-size: 1.2rem;
}
}
</style>
</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>
<ul>
<li>
<strong>Sentiment Analysis</strong>: Web app untuk analisis sentimen dalam Bahasa Indonesia.
</li>
<li>
<strong>Visualisasi Squad Sepak Bola</strong>: Tools untuk membuat formasi tim sepak bola dengan statistik pemain.
</li>
</ul>
</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>
© 2025 [Nama Kamu]
</footer>
</body>
</html> |