-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Space Tour</title>
<!-- stylesheets -->
<link rel="stylesheet" href="./resources/styles/style.css">
<!-- fonts -->
<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=Poppins:wght@100;400;600&display=swap" rel="stylesheet">
</head>
<body>
<main>
<header>
<span class="logo">SPACE TOUR</span>
</header>
<video autoplay muted loop id="bg-vid">
<source src="./resources/img/star_twinkling.mp4" type="video/mp4">
</video>
<div id="get-name">
<p class="desc">Woooho! Are you excited to learn something about the endless space? ✨ <br>
That's cool! Enter your name below to launch our rocket 🚀<img src="https://cdn.discordapp.com/emojis/779485047828512798.gif?size=48" alt=""></p>
<form>
<div class="input-wrapper">
<input type="text" name="name" placeholder="Enter Name" id="name-input" >
</div>
<p>your name is not saved , its for a personal experience until you close the site</p>
<div id="error-message" style="text-align: center;"></div>
<div class="p-ns"><button value="submit" name="submit" id="name-submit">SUBMIT</button></div>
</form>
</div>
<div class="earth_container">
<img src="./resources/img/earth.png" id="earth" alt="">
</div>
</main>
<script src="./resources/js/app.js"></script>
<!-- <script>
document.getElementById('name-submit').addEventListener('click', function() {
const name = document.getElementById('name-input').value;
localStorage.setItem('userName', name);
window.location.href = 'home.html';
});
</script> -->
</body>
</html>