-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (83 loc) · 2.83 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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" />
<!-- to link cdn -->
<link rel="stylesheet" href="style.css" />
<title>Solar system</title>
</head>
<body>
<!-- star field start -->
<div id="container"></div>
<!-- star field end -->
<!-- heading start-->
<h1 class="heading">Solar System Explorer</h1>
<!-- heading end -->
<!-- bar start -->
<div class="outer">
<div class="inner"></div>
</div>
<!-- bar end -->
<main>
<!-- template start -->
<article class="card">
<div class="card__planet">
<div class="planet__atmosphere">
<div class="planet__surface"></div>
</div>
</div>
<div class="card__info">
<h2 class="info__title"></h2>
<div class="info__form">
<div class="info__item">
<label class="info__label">Tilt</label
><span class="info__line"></span
><i class="tilt__icon fas fa-long-arrow-alt-right"></i
><span class="info__detail info__degree"></span>
</div>
<div class="info__item">
<label class="info__label">Day</label
><span class="info__line"></span
><span class="info__detail info__hours"></span>
</div>
<div class="info__item">
<label class="info__label">Year</label
><span class="info__line"></span
><span class="info__detail info__days"></span>
</div>
</div>
</div>
</article>
<!-- template end -->
<!-- funfact template start -->
<div class="funfact">
<div class="funfact__card">
<div class="funfact__content">
<h1>Did you know ?</h1>
<h2 class="funfact__content__main">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Ex optio
temporibus animi dolorem officiis aperiam neque voluptatibus velit
laboriosam aut facilis delectus repellendus maiores expedita
doloremque, ea quisquam harum. In!
</h2>
</div>
</div>
</div>
<!-- funfact template end -->
</main>
<!-- instruction -->
<h2 class="instruction">
Use left arrow key and right arrow key to navigate !!
</h2>
<script src="script.js"></script>
<script src="starfield.js"></script>
<script>
var container = document.getElementById("container");
var starfield = new Starfield();
starfield.initialise(container);
starfield.start();
</script>
</body>
</html>