<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Моя визитка</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px;
text-align: center;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #4CAF50;
}
a {
color: #4CAF50;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 10px;
background-color: #4CAF50;
color: white;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>QQ</h1>
<p>Добро пожаловать</p>
</header>
<div class="container">
<h2>Обо мне</h2>
<p>Привет! Меня .</p>
<h2>Контакты</h2>
<p>Свяжитесь со мной:</p>
<ul>
<li>Email: <a href="mailto:sa”samvelium@gmail.com” samvelium@gmail.com</a></li>
</ul>
</div>
<footer>
© 2025
</footer>
</body>
</html>