Bu bir örnek kart yapısıdır.
style.css
body {
background: #121212;
color: white;
font-family: sans-serif;
padding: 2rem;
}
.card {
background: #1e1e2f;
padding: 1rem;
border-radius: 12px;
box-shadow: 0 0 10px #000;
width: 250px;
}
index.html
<div class="card">
<h3>Proje Başlığı</h3>
<p>Bu bir örnek kart yapısıdır</p>
</div>
← Geri Dön