-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (46 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Systematis Solaris</title>
<!--Loading google fonts-->
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@497&family=Righteous&display=swap" rel="stylesheet"/>
<!--Loading css-->
<link rel="stylesheet" href="./styles/style.css" />
</head>
<body>
<!--Main starts here-->
<main class="wrapper landing">
<video class="video" autoplay muted loop id="myVideo">
<source src="./assets/Space - 2381.mp4" type="video/mp4" />
</video>
<div class="title">
<h1 class="landing-title">Systematis Solaris</h1>
<p class="intro">A gallery of space powered by the NASA API</p>
<div class="button-container">
<button class="landing-button" type="submit" onclick="window.location.href='planets.html'">Click me</button>
</div>
</div>
</main>
<!--Main ends here-->
<!--Footer starts here-->
<footer>
<p class="footer">
<i aria-hidden="true" class="far fa-copyright"></i>
<span class="sr-only">Copyright</span>
Anna Spiridonenkova and Gabriela Parada 2020
</p>
</footer>
<!--Footer ends here-->
</body>
<!--loading typed js-->
<script src="https://rawgit.com/mattboldt/typed.js/v2.0.6/lib/typed.min.js"></script>
<!--Loading font awesome-->
<script src="https://kit.fontawesome.com/1125888b4e.js" crossorigin="anonymous"></script>
<!--loading jQuery-->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<!--loading JS-->
<script src="./scripts/scripts.js"></script>
</html>