-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (45 loc) · 1.42 KB
/
index.html
File metadata and controls
48 lines (45 loc) · 1.42 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
<!doctype html>
<!-- this is a project for a class that has me make two fetch requests and display it on my site
-->
<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="index.css" />
<title>Open-API</title>
</head>
<body>
<header>
<h1 id="title">Open-API</h1>
<p id="description">
Welcome to my Open-API project! This project is designed to provide a
comprehensive and user-friendly interface for accessing information from
earth using various APIs.
</p>
<nav>
<ul>
<li><a href="#nasa-content">NASA APOD</a></li>
<li><a href="#country-content">Learn About a Country</a></li>
</ul>
</nav>
</header>
<main>
<section id="nasa-content">
<h2>Astronomy Picture of the Day</h2>
<p id="api-data" alt="NASA Astronomy Picture or Video of the Day "></p>
</section>
<section id="country-content">
<h2>Learn more about countries on Earth</h2>
<input
type="text"
id="countryInput"
placeholder="Enter a country name"
/>
<button id="searchBtn">Search</button>
<p id="country-description"></p>
</section>
</main>
<script src="index.js"></script>
</body>
</html>