-
Notifications
You must be signed in to change notification settings - Fork 30
/
index.html
36 lines (28 loc) · 956 Bytes
/
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
<!doctype html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=K2D" rel="stylesheet">
<link rel="stylesheet" href="./basic.css" />
</head>
<body>
<!-- The landing page -->
<div id="landing-page">
<p style="color:#BFBFBF; font-size: 4rem;">KameKazi. <br> <span style="font-size:2rem">Send Secure, encrypted messages.</span></p>
</div>
<form method="POST">
<h1>Message</h1>
<textarea name="umsg"></textarea>
<input type="submit" name="send-msg" value="Send" />
</form>
<!-- The script for the landing page -->
<script>
var landingPage = document.querySelector('#landing-page');
setTimeout(function(){
landingPage.style.transform = "translateY(-100%)";
}, 3000);
landingPage.addEventListener('click', function(){
landingPage.style.transform = "translateY(-100%)";
})
</script>
</body>
</html>