-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 1.76 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
<!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" />
<title>SpaceX Lauches</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous"
/>
</head>
<body onload="getData()">
<div class="main">
<h1>SpaceX Launches</h1>
<div class="list"></div>
<div class="page-nums"></div>
<div class="row footer">
<p>
Copyright <i class="fa fa-copyright" aria-hidden="true"></i> 2021
Coding Hub Inc. All rights reserved.
<span class="links">
<a
href="httspans://www.facebook.com/tharun.kumar.3705"
target="_blank"
><i class="fa fa-facebook-official" aria-hidden="true"></i
></a>
<a href="https://www.instagram.com/" target="_blank"
><i class="fa fa-instagram" aria-hidden="true" target="_blank"></i
></a>
<a href="https://github.com/Tharun-coder" target="_blank"
><i class="fa fa-github" aria-hidden="true"></i
></a>
<a
href="https://www.linkedin.com/in/tharun-kumar-943291121"
target="_blank"
><i class="fa fa-linkedin" aria-hidden="true"></i
></a>
</span>
</p>
</div>
</div>
<script src="./index.js"></script>
</body>
</html>