style.css
body {
background: #121212;
color: white;
font-family: sans-serif;
padding: 2rem;
}
select {
padding: 10px;
border-radius: 6px;
background: #1e1e2f;
color: white;
border: none;
}
index.html
<label for="meslek">Bir meslek seçin:</label><br><br><br>
<select id="meslek">
<option>Yazılımcı</option>
<option>Grafiker:</option>
<option>Veri Analisti:</option>
</select>
← Geri Dön