-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
73 lines (73 loc) · 2.28 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
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="index.css" />
<link rel="stylesheet" href="reset.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="./img/favicon.png" />
<title>Hashchat</title>
</head>
<body>
<nav class="navbar">
<div class="nav-left">
<a
href="https://docs.google.com/forms/d/e/1FAIpQLScd9eum4OIX_LvhgQW5t5p7vALn1RQCMsI9HUj53U6obgql7g/viewform?usp=sf_link"
target="_blank"
class="community"
>Community Outreach</a
>
</div>
<ul class="navbar-list">
<a
target="_blank"
href="https://twitter.com/hashchatxyz"
class="twitter"
>Twitter</a
>
<a target="_blank" href="https://discord.gg/CE788vNg5B" class="discord"
>Discord</a
>
<a
target="_blank"
href="https://lumbar-teal-d22.notion.site/Hashchat-Careers-702e0a23caaf4dd39573783610f383ef"
class="jobs"
>Jobs</a
>
</ul>
</nav>
<main>
<div class="main-container">
<div class="top-container">
<div class="left-container">
<h3 class="l1">H</h3>
<h3 class="l2">a</h3>
<h3 class="l3">s</h3>
<h3 class="l4">h</h3>
</div>
<div class="right-container">
<h3 class="l5">c</h3>
<h3 class="l6">h</h3>
<h3 class="l7">a</h3>
<h3 class="l8">t</h3>
</div>
</div>
<div class="top-middle-container">
<h5>
An encrypted and cross-chain messaging platfrom built for
<span class="description">communities.</span>
</h5>
</div>
</div>
</main>
<script src="./script.js"></script>
</body>
</html>