-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.html
100 lines (92 loc) · 3.25 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<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 rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<header class="header">
<div class="container">
<div class="header__inner">
<div class="logo">
<a href="./index.html">SNAPMENT</a>
</div>
<div class="nav">
<ul>
<li>
<a href="./index.html">WORK</a>
</li>
<li>
<a href="./about.html">ABOUT</a>
</li>
<li>
<a href="./contacts.html">CONTACTS</a>
</li>
</ul>
</div>
</div>
</div>
</header>
<div class="content">
<div class="container">
<div class="content__inner">
<h1>WANNA CAPTURE YOUR MOMENTS? YES, YOU CAN MESSAGE ME BELOW AND YES YOU CAN ALSO CONTACT ME VIA MY SOCIAL MIDEAS BELOW</h1>
<div class="content__form">
<form action="#" class="form">
<div class="form__row form__row--hascols">
<div>
<input type="text" placeholder="Your name">
</div>
<div>
<input type="email" placeholder="Your email">
</div>
</div>
<div class="form__row">
<div>
<input type="text" placeholder="Subject">
</div>
</div>
<div class="form__row">
<div>
<textarea placeholder="Your message"></textarea>
</div>
</div>
<div class="form__row">
<div>
<input type="submit" value="Send">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<div class="footer__inner">
<div class="footer-left">
<h3>JOHN DOE © 2021</h3>
</div>
<div class="footer-center">
<h3>
<a href="#"> EMAIL,</a>
<a href="#"> TWITTER,</a>
<a href="#"> LINKEDIN</a>
</h3>
</div>
<div class="footer-right">
<h3>BACK TO TOP <span>↑</span></h3>
</div>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.6.0/gsap.min.js" integrity="sha512-1dalHDkG9EtcOmCnoCjiwQ/HEB5SDNqw8d4G2MKoNwjiwMNeBAkudsBCmSlMnXdsH8Bm0mOd3tl/6nL5y0bMaQ==" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/barba.js/1.0.0/barba.min.js" integrity="sha512-7b1FfB2MGnB65aK6jrbS8k3REB+8bEE8UfP/TEwacejD0g02nLLI1VL4IPcKyiLk2lf7HJWaUYEUWc65aqaXQg==" crossorigin="anonymous"></script>
<script src="./js/functions.js"></script>
</body>
</html>