deepsite-project / index.html
muzaf's picture
bu resme iyi bak kullanabilirsin bu resmi
c5f7446 verified
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>My static Space</title>
<link rel="stylesheet" href="style.css" />
<style>
.image-container {
margin: 20px 0;
text-align: center;
}
.image-container img {
border-radius: 8px;
max-width: 100%;
}
nav {
margin-top: 20px;
text-align: center;
}
nav a {
margin: 0 10px;
padding: 12px 24px;
background: #2563eb;
border-radius: 12px;
text-decoration: none;
color: #f8fafc;
font-weight: 600;
transition: all 0.3s ease;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
border: 2px solid #1e40af;
}
nav a:hover {
background: #1d4ed8;
transform: translateY(-2px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<div class="card">
<h1 style="color: #1e293b;">Welcome to Hadi's Space!</h1>
<p style="color: #475569;">This is a customized static website created by Hadi.</p>
<div class="image-container">
<img src="https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8dGVjaG5vbG9neXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&w=500&q=60" alt="Technology Image">
</div>
<nav>
<a href="projects.html">My Projects</a>
<a href="contact.html">Contact Me</a>
</nav>
</div>
</body>
</html>