<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Визитка</title>
<style>
body {
text-align: center;
font-family: Arial;
background: #f0f0f0;
}
img {
width: 150px;
border-radius: 50%;
}
button {
background: blue;
color: white;
border: none;
padding: 10px 20px;
}
</style>
</head>
<body>
<h1>Анна Иванова</h1>
<p>Я творческий и креативный графический дизайнер. Всегда рада присоединится к вашему проекту!</p>
<img src="photo.jpg">
<form>
<input type="text" placeholder="Имя"><br>
<input type="email" placeholder="Email"><br>
<textarea placeholder="Сообщение"></textarea><br>
<button>Отправить</button>
</form>
<p>© 2026 Анна Иванова</p>
</body>
</html>