-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
68 lines (59 loc) · 1.83 KB
/
Copy pathcontact.html
File metadata and controls
68 lines (59 loc) · 1.83 KB
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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact --- OH.STUDIO</title>
<link rel="stylesheet" href="style.css">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link href="https://vjs.zencdn.net/8.10.0/video-js.css" rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="assets/icon.png">
<style>
footer {
width: 100%;
height: 100vh;
justify-content: center;
align-items: center;
position: relative;
}
.contact {
position: absolute;
}
.footer {
margin-top: 700px;
}
/* .contact {
padding-top: 200px;
} */
</style>
</head>
<body>
<nav>
<div class="navbar">
<div class="menus">
<a href="index.html">Home</a>
<a href="profile.html">Profile</a>
<a href="contact.html" class="active">Contact</a>
</div>
</div>
</nav>
<footer>
<div class="contact">
<h1 style="font-size: 72px;">Let's work together.</h1>
<a href="#" style="font-size: 58px;">Get in touch.</a>
</div>
<div class="footer container">
<div class="copyright">
<p>© Dimm Riff 2024</p>
</div>
<div class="sosialmedia">
<a href="#">Twitter</a>
<a href="#">LinkedIn</a>
<a href="#">Mail</a>
</div>
</div>
</footer>
<script src="https://unpkg.com/[email protected]/dist/boxicons.js"></script>
</body>
</html>