-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
69 lines (69 loc) · 2.34 KB
/
contact.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<script
src="https://kit.fontawesome.com/da0f63c0fa.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="src/styles.css" />
<title>Contact Tatiana</title>
</head>
<body>
<div class="navigation d-flex justify-content-center">
<ul class="nav">
<li class="nav-item">
<a class="nav-link" href="/index.html" title="Homepage">Главная</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/gallery.html" title="Gallery">Галерея</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Контакты</a>
</li>
</ul>
</div>
<div class="container">
<div class="intro">
<h1>Татьяна Мандрикова</h1>
<hr class="rounded mb-2" />
<h2>Как со мной связаться:</h2>
</div>
<div class="content">
<h5><i class="fas fa-phone-square-alt"></i></h5>
<h4 class="mb-0">+222333222233322</h4>
<br />
<h5><i class="fab fa-facebook-square"></i></h5>
<a href="" target="_blank">Facebook</a><br />
<br />
<h5><i class="fas fa-envelope-square"></i></h5>
<a href="" target="_blank">Email</a>
</div>
</div>
<footer class="mb-2">
This website was coded by
<a
href="https://inspiring-noyce-9d41a5.netlify.app"
target="_blank"
rel="noopener noreferrer"
>
Mariia Ivanski
</a>
in 2021.
</footer>
</body>
</html>