-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
92 lines (89 loc) · 3.32 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
90
91
92
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>PIGOdES</title>
<link rel="stylesheet" href="./style.css">
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</head>
<body>
<div class="nav">
<p>PIGOdES</p>
<ion-icon name="menu-outline" onclick="toggle()"></ion-icon>
<div class="break"></div>
<ul id="list">
<li><a href="#home">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#about">About</a></li>
</ul>
</div>
<div class="body">
<div id="home" class="home"></div>
<div id="features" class="features">
<p class="title">Features</p>
<div class="f-container">
<div class="card">
<p class="card-title">SOLAR SYSTEM</p>
<img class="image" src="img/solar-system.jpeg" alt="" />
<p class="desc">
Explore the solar system from the sun to the moons of every planet.
Get the facts about these planets including their moons.
</p>
<a class="take-me-there" href="./stars.html">Go there</a>
</div>
<div class="card">
<p class="card-title">CONSTELLATIONS</p>
<img class="image" src="img/constellations.jpeg" alt="" />
<p class="desc">
Explore the constellations that we see on the night sky.
See them and learn about some new facts about them.
</p>
<a class="take-me-there" href="./constelations.html">Go there</a>
</div>
</div>
</div>
<div class="about" id="about">
<p class="title">About</p>
<div class="devs">
<div class="cont">
<a href="https://github.com/codingwith3dv"><img class="dev-image" src="https://avatars.githubusercontent.com/u/77389222?v=4" /></a>
<div>
<p class="name">CodingWith3DV</p>
<p class="desc">
I am a 14 year old high school student.
I am well-versed in frontend development.
<br /><br />
Contribution: Solar system, Landing page
</p>
</div>
</div>
<div class="cont">
<a href="https://github.com/Daki-DM"><img class="dev-image" src="https://avatars.githubusercontent.com/u/69979130?v=4" /></a>
<div>
<p class="name">Daki-DM</p>
<p class="desc">
I'm 14 years old and I like to code. My skills are HTML, JavaScript, Python.
<br /><br />
Contribution: Constellation
</p>
</div>
</div>
<div class="cont">
<a href="https://github.com/ritvij14"><img class="dev-image" src="https://avatars.githubusercontent.com/u/51456744?v=4" /></a>
<div>
<p class="name">Ritvij14</p>
<p class="desc">
I am an undergraduate pursuing my B.E. in Electronics and instrumentation.
<br /><br />
Contribution: Little of the design for page
</p>
</div>
</div>
</div>
</div>
</div>
<script src="index.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>