-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Track the live location of the ISS as it orbits Earth." />
<meta name="keywords" content="international, space, station, iss, exploration, satellite, nasa, interationalspacestation" />
<meta property="og:title" content="Where the ISS at?" />
<meta property="og:description" content="Track the live location of the ISS as it orbits Earth." />
<meta property="og:image" content="https://github.com/gargajit/whereisiss/blob/main/assets/space.webp" />
<meta property="og:url" content="https://gargajit.github.io/whereisiss/" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="https://github.com/gargajit/whereisiss/blob/main/assets/space.webp" />
<meta name="twitter:title" content="Where the ISS at?" />
<meta name="twitter:description" content="Track the live location of the ISS as it orbits Earth." />
<meta name="twitter:image" content="https://github.com/gargajit/whereisiss/blob/main/assets/space.webp" />
<link rel="preload" href="./assets/space.webp" as="image">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Jersey+20+Charted&family=Titan+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<title>Where The ISS At?</title>
</head>
<body>
<h1 class="titan-one-regular">Track the Live Location of ISS</h1>
<button id="locate-iss-btn">Locate ISS</button>
<img id="iss-img" src="./assets/iss-white.png" alt="international space station image">
<div id="iss-location">
<p id="latitude"></p>
<p id="longitude"></p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="./index.js"></script>
</body>
</html>