forked from CA-G12/Space-API-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (72 loc) · 2.61 KB
/
index.html
File metadata and controls
75 lines (72 loc) · 2.61 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
<!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" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.2/css/all.min.css"
/>
<link rel="stylesheet" href="./CSS/index.css" />
<title>Space X API Project</title>
</head>
<body>
<!--Start of header section-->
<header>
<img src="./Img/SpaceX-Logo.png" alt="Space-X-photo" />
<div>
<input type="text" placeholder="search..." id="search" value=""/>
<a href="#"><i class="fa-solid fa-magnifying-glass"></i></a>
</div>
</header>
<!--End of header section-->
<main>
<!--Start of space section-->
<section id="space-container">
<h1>The Latest Launches</h1>
<div class="container"></div>
<a href="#" id="show-more">Show more</a>
</section>
<section id="info">
<div class="container">
<img src="" alt="">
<div class="card">
<h1>FalconSat</h1>
<h4>Flight Number: <span class="flight-number"></span></h4>
<h4>Launch Date: <span class="launch-date"></span></h4>
<h4>Static Fire Date: <span class="fire-date"></span></h4>
<h4>Status: <span class="status"></span></h4>
<h4>Details: <span class="details"></span></h4>
<h4>Links: <span>
<a href="#" class="Yout-link"><i class="fa-brands fa-youtube"></i></a>
<a href="#" class="wiki-link"><i class="fa-brands fa-wikipedia-w"></i></a>
<a href="#" class="news-link"><i class="fa-solid fa-newspaper"></i></i></a>
</span></h4>
</div>
</div>
</section>
<!--End of space section-->
<section id="techport"></section>
</main>
<!--Start of footer section-->
<footer>
<img src="./Img/SpaceX-Logo.png" alt="logo" />
<ul>
<li>Privacy</li>
<li>Office of inspector General</li>
<li>Office of Special Counsel</li>
<li>Contact Us</li>
</ul>
<div class="social">
<a href="#"><i class="fa-brands fa-facebook-f"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
</div>
</footer>
<!--End of footer section-->
<script src="./JS/fetch.js"></script>
<script src="./JS/detailsDom.js"></script>
<script src="./JS/dom.js"></script>
</body>
</html>