-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
68 lines (60 loc) · 2.25 KB
/
about.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
<!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 data-barba="wrapper">
<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="wrapper" data-barba="container" data-barba-namespace="about">
</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>