-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<title>Cloak - End to End Encryption In Your Hands</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="logo.png" alt="Cloak Logo">
<h1 hidden>Cloak</h1>
</div>
<ul>
<li class="dropdown">
<a href="#">Download <i class="fas fa-caret-down"></i></a>
<ul class="hidden-list">
<li><a href="#">
<i class="fab fa-chrome"></i> Chrome
</a></li>
<li>
<hr>
</li>
<li><a href="#">
<i class="fab fa-firefox"></i> Firefox
</a></li>
</ul>
</li>
<li><a href="/docs">Docs</a></li>
<li><a href="/blog">Blog</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<div class="hero">
<h2>Secure Messaging with Cloak</h2>
<a href="/docs#getting-started" class="btn">Get Started</a>
</div>
</main>
<footer>
<p>© 2023 Cloak Developers. All rights reserved.</p>
</footer>
</body>
</html>