-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
39 lines (35 loc) · 1.37 KB
/
contacts.html
File metadata and controls
39 lines (35 loc) · 1.37 KB
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=Merriweather&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/991481f209.js" crossorigin="anonymous"></script>
<title>Мое хобби - контакты</title>
</head>
<body>
<div class="header">
<div class="inner-header">
<div class="logo-container">
<h1>Выпечка хлеба</h1>
</div>
<ul class="navigation">
<a href="index.html"><li>Главная</li></a>
<a href="about.html"><li>Обо мне</li></a>
<a href="contacts.html"><li >Обратная связь</li></a>
</ul>
</div>
</div>
<div class="container"><h1>Контакты:</h1>
<div class="contacts">
<span class="fas fa-phone fa-x9"></span><a href="tel:+380684748873">+380684748873</a>
<br>
<span class="fab fa-viber fa-x2"></span><a href="viber://add?number=380684748873">Написать в Viber</a>
<br>
<span class="fab fa-telegram-plane fa-x2"> </span><a href="tg://resolve?domain=NikName">Написать в Телеграм</a>
<br>
<span class="fab fa-vk fa-x2"> </span><a href="https://vk.com/kypi_planshet_tyt">VK</a>
</div>
</div>
</body>
</html>