Dưới đây là đoạn code HTML thông báo website đang bảo trì:
<!DOCTYPE html>
<html lang=”vi”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Bảo trì</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f8f9fa;
}
.message {
text-align: center;
background-color: #ffffff;
border: 1px solid #dee2e6;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.message h1 {
color: #343a40;
margin-bottom: 10px;
}
.message p {
color: #6c757d;
}
</style>
</head>
<body>
<div class=”message”>
<h1>Website đang bảo trì</h1>
<p>Chúng tôi xin lỗi vì sự bất tiện này. Vui lòng quay lại sau.</p>
</div>
</body>
</html>




