WebCode
ekip
- Katılım
- 13 Ağu 2024
- Mesajlar
- 197
- Tepkime puanı
- 35

Kod:
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Site Bakımda</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
color: #333;
text-align: center;
}
.container {
max-width: 600px;
padding: 20px;
border: 1px solid #ddd;
background: white;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
h1 {
font-size: 2em;
margin-bottom: 10px;
}
p {
font-size: 1em;
line-height: 1.5;
}
.contact {
margin-top: 20px;
font-size: 0.9em;
color: #555;
}
.contact a {
color: #007BFF;
text-decoration: none;
}
.contact a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Yakında Geri Döneceğiz!</h1>
<p>
Web sitemiz şu anda planlı bir bakım çalışmasından geçiyor. <br>
Deneyiminizi iyileştirmek için çalışıyoruz ve kısa süre içinde tekrar çevrimiçi olacağız.
</p>
<p class="contact">
Eğer yardıma ihtiyacınız olursa, lütfen bizimle <a href="mailto:support@febu.net">support@example.com</a> üzerinden iletişime geçin.
</p>
<p>
Sabır ve anlayışınız için teşekkür ederiz.
</p>
</div>
</body>
</html>