-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (68 loc) · 3.16 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ClawBox</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="script.js" defer ></script>
</head>
<body>
<div class="holder">
<div class="header">
<nav>
<div class="logo">
<a href="index.html"><img src="images/logo.png" alt="claw box"></a>
</div>
<div class="links">
<a href="index.html">Home</a>
<a href="html/creator.html">Creator program</a>
<a href="html/company.html">Company</a>
<a href="html/signup.html">Signup</a>
<a href="html/login.html">Login</a>
</div>
<div class="ham">
<span></span>
<span></span>
<span></span>
</div>
</nav>
<!-- mobile links -->
<div class="mob-links">
<a href="index.html">Home</a>
<a href="html/creator.html">Creator program</a>
<a href="html/company.html">Company</a>
<a href="html/signup.html">Signup</a>
<a href="html/login.html">Login</a>
</div>
<div class="header-content">
<p class="bold-cont">Share And Save Videos Anywhere in <br> World Free, Fast & Easy</p>
<p class="small-cont">Fastest Video Sharing Platform</p>
<div class="head-btn">
<a href="html/creator.html"><button>Join Creator program</button></a>
</div>
</div>
<div class="footer">
<div class="copyrights">
<p>ClawBox © 2022-2023 - All rights reserved.</p>
</div>
<div class="quick-links">
<a href="index.html">Home</a>
<a href="html/creator.html">Creator program</a>
<a href="html/company.html">Company</a>
<a href="html/signup.html">Signup</a>
<a href="html/login.html">Login</a>
</div>
<div class="social-media">
<a href="https://www.facebook.com/profile.php?id=61552205531203&mibextid=ZbWKwL" target="_blank"><i class="fa-brands fa-facebook-f"></i></a>
<a href="https://instagram.com/clawboxofficial?igshid=NGVhN2U2NjQ0Yg==" target="_blank"><i class="fa-brands fa-instagram"></i></a>
<a href="https://x.com/Claw_Box?s=09" target="_blank"><i class="fa-brands fa-twitter"></i></a>
</div>
</div>
</div>
</div>
<div class="main">
</div>
</body>
</html>