deepsite-project / projects.html
muzaf's picture
bu resme iyi bak kullanabilirsin bu resmi
c5f7446 verified
raw
history blame contribute delete
980 Bytes
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My Projects</title>
<link rel="stylesheet" href="style.css" />
<style>
.project {
margin: 20px 0;
padding: 24px;
border: 1px solid #e2e8f0;
border-radius: 12px;
background: #f8fafc;
}
.project h2 {
color: #1e293b;
margin-bottom: 12px;
}
.project p {
color: #475569;
}
</style>
</head>
<body>
<div class="card">
<h1>My Projects</h1>
<div class="project">
<h2>Project 1</h2>
<p>Description of my first project.</p>
</div>
<div class="project">
<h2>Project 2</h2>
<p>Description of my second project.</p>
</div>
<a href="index.html" style="display: inline-block; margin-top: 20px; padding: 12px 24px; background: #2563eb; color: #f8fafc; border-radius: 12px; text-decoration: none; font-weight: 600; border: 2px solid #1e40af;">Back to Home</a>
</div>
</body>
</html>