<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Мой первый сайт</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f4f6f8;
color: #333;
}
header {
background: #1e88e5;
color: white;
padding: 20px;
text-align: center;
}
main {
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
}
section {
background: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
button {
background: #1e88e5;
color: white;
border: none;
padding: 10px 16px;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background: #1565c0;
}
footer {
text-align: center;
padding: 15px;
background: #e0e0e0;
font-size: 14px;
}
</style>
</head>
<body>
<header>
<h1>Добро пожаловать 👋</h1>
<p>Простой HTML сайт</p>
</header>
<main>
<section>
<h2>О сайте</h2>
<p>
Это пример простого сайта на чистом HTML и CSS.
Он подойдёт для обучения, тестов или стартового проекта.
</p>
</section>
<section>
<h2>Действие</h2>
<p>Нажмите кнопку:</p>
<button onclick="alert('Кнопка работает!')">Нажать</button>
</section>
</main>
<footer>
© 2025 Мой сайт
</footer>
</body>
</html>