-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
44 lines (44 loc) · 2.23 KB
/
contacts.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/8.0.1/normalize.css">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Montserrat:wght@300;400;500;700&display=swap" rel="stylesheet">
<title>Краткая история</title>
</head>
<body>
<header class="header">
<nav class="header__nav">
<a href="index.html" class="header__link header__link--first"><img src="image/home.png" alt="домашняя страница" width="40px" height="40px" class="header__img"></a>
<div class="header__page">
<a href="about-me.html" class="header__link mr-1">Обо мне</a>
<a href="contacts.html" class="header__link">Контакты</a>
</div>
</nav>
</header>
<main class="main main__contacts">
<h2 class="head">Есть вопрос? Напиши мне!</h2>
<form action="" class="form">
<div class="form__field">
<input type="text" placeholder="Введите имя" required>
</div>
<div class="form__field">
<input type="email" placeholder="Введите email" required>
</div>
<div class="form__field">
<textarea placeholder="Введите сообщение"></textarea>
</div>
<div class="form__field">
<input type="submit" value="Отправить" class="form__button">
</div>
</form>
</main>
<footer class="footer">
<a href="https://t.me/AnnBarmina" target="_blank" class="footer__link"><img src="image/telegram.png" alt="telegram" width="40px" height="40px"></a>
<a href="http://instagram.com/annbarmina___" target="_blank" class="footer__link"><img src="image/instagram.png" alt="instagram" width="40px" height="40px"></a>
<a href="https://wa.me/89506434190" target="_blank" class="footer__link"><img src="image/whats-app.png" alt="whats app" width="40px" height="40px"></a>
</footer>
</body>
</html>