-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
44 lines (44 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>oh.studio</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
</head>
<body>
<main>
<div id="p-1" class="padding-l-r">
<nav>
<div class="nav-box"><a href="index.html" class="active">Home</a></div>
<div class="nav-box"><a href="profile.html">Profile</a></div>
<div class="nav-box active"><a href="contact.html">Contact</a></div>
</nav>
</div>
<div id="p-3">
<div class="work cont-work">
<h1>Let's work together.</h1>
<h1 class="grey-heading">Get in touch.</h1>
</div>
<footer class="padding-l-r cont-foot">
<p>© Oli Haris 2023</p>
<div class="links">
<a href="#">Twiiter</a>
<a href="#">LinkedIn</a>
<a href="#">Mail</a>
</div>
</footer>
</div>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.3/gsap.min.js" integrity="sha512-7Au1ULjlT8PP1Ygs6mDZh9NuQD0A5prSrAUiPHMXpU6g3UMd8qesVnhug5X4RoDr35x5upNpx0A6Sisz1LSTXA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>
var tl = gsap.timeline();
tl.from(".work h1",{
y: 20,
opacity:0,
duration:1
})
</script>
</body>
</html>