-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (90 loc) · 3.39 KB
/
index.html
File metadata and controls
117 lines (90 loc) · 3.39 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/menu-1.css">
<script src="script/code1.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/styles.css">
<title>Solar travels</title>
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html" class="active">Home</a>
<a href="about-us.html">About</a>
<a href="contact.html">Contact</a>
<a href="#login" id="right">Log in</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
☰
</a>
</div>
<div class="jumbotron1">
<div class="container text-center">
<h1 class="title">Solar Travels</h1>
<h2 class="light">We will take you to the Moon and beyond!</h2>
<img src="media/planets.svg" class="img-responsive logo" alt="our logo">
</div>
</div>
<div class="container-fluid bg-3 text-center">
<h2>Where would you like to go?</h2><br>
</div>
<br>
<div class="container-fluid bg-3 text-center">
<div class="row">
<div class="col-sm-3">
<h3>Sun</h3>
<a href="sun.html" target="_blank"><img src="media/sun.svg" class="img-responsive thumbnail" style="width:100%" alt="Sun">
</a>
</div>
<div class="col-sm-3">
<h3>Mercury</h3>
<a href="mercury.html" target="_blank"><img src="media/mercury.svg" class="img-responsive thumbnail" style="width:100%" alt="Mercury">
</a>
</div>
<div class="col-sm-3">
<h3>Venus</h3>
<a href="venus.html" target="_blank"><img src="media/venus.svg" class="img-responsive thumbnail" style="width:100%" alt="Venus">
</a>
</div>
<div class="col-sm-3">
<h3>Earth</h3>
<a href="earth.html" target="_blank"><img src="media/earth.svg" class="img-responsive thumbnail" style="width:100%" alt="Earth">
</a>
</div>
</div>
</div><br><br>
<div class="container-fluid bg-3 text-center">
<div class="row">
<div class="col-sm-3">
<h3>Mars</h3>
<a href="mars.html" target="_blank"><img src="media/mars.svg" class="img-responsive thumbnail" style="width:100%" alt="Image">
</a>
</div>
<div class="col-sm-3">
<h3>Jupiter</h3>
<a href="jupiter.html" target="_blank"><img src="media/jupiter.svg" class="img-responsive thumbnail" style="width:100%" alt="Image">
</a>
</div>
<div class="col-sm-3">
<h3>Saturn</h3>
<a href="saturn.html" target="_blank"><img src="media/saturn.svg" class="img-responsive thumbnail" style="width:100%" alt="Image">
</a>
</div>
<div class="col-sm-3">
<h3>Uranus</h3>
<a href="uranus.html" target="_blank"><img src="media/uranus.svg" class="img-responsive thumbnail" style="width:100%" alt="Image">
</a>
</div>
</div>
</div><br><br>
<footer class="container-fluid text-center">
<p></p>
</footer>
</body>
</html>
</body>
</html>