-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
86 lines (86 loc) · 3.19 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="discription" content="How to contact by Patricia Pereira" />
<title>contact</title>
<link href="css/style.css" rel="stylesheet" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<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=Baloo+Bhaijaan+2:wght@400;500;600;700;800&family=IBM+Plex+Sans+Arabic:wght@500&family=Markazi+Text:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:wght@500;700&display=swap"
rel="stylesheet"
/>
<title>Document</title>
</head>
<body>
<!-- Menu -->
<div class="container" id="menu">
<nav class="d-flex justify-content-between">
<img src="/img/logo.png" class="d-none d-md-block" alt="logo" />
<img
src="https://uploads.codesandbox.io/uploads/user/536b9ee2-9d41-444a-a85a-62ae77e381ac/L9xk-logo-small.jpg"
class="d-block d-md-none"
alt="small-logo"
/>
<ul>
<li>
<a href="/" title="Home">Home</a>
</li>
<li>
<a href="/about.html" title="about Patricia Pereira">About</a>
</li>
<li>
<a href="/work.html" title="portifolio Patricia Pereira">Work</a>
</li>
<li class="active">
<a href="/contact.html" title="contact to Patricia Pereira"
>Contact</a
>
</li>
</ul>
</nav>
</div>
<!-- End menu -->
<section class="content">
<div class="container">
<h1>Let's get in touch!</h1>
<div class="row">
<div class="col-lg-4">
<div class="row">
<div class="col-lg-4">
<a href="https://www.facebook.com">
<img src="img/assest/facebook.png" class="pt-4 img-fluid" />
</a>
</div>
<div class="col-lg-4">
<a href="https://www.instagram.com">
<img src="img/assest/instagram.png" class="pt-4 img-fluid" />
</a>
</div>
<div class="col-lg-4">
<a href="https://www.twitter.com">
<img src="img/assest/twitter.png" class="pt-4 img-fluid" />
</a>
</div>
</div>
<h2 class="pt-4 m-0">Email</h2>
<p>
<a href="mailto:[email protected]">mailto:[email protected]</a>
</p>
<h2 class="pt-4 m-0"><address>Address</address></h2>
<p>19 Daneshamozstreet, Mashhad, Iran</p>
<a href="https://googlemap.com">Saerch on googlemap</a>
</div>
</div>
</div>
</section>
</body>
</html>