forked from Resilient-Labs/simple-nasa-api-bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (25 loc) · 881 Bytes
/
index.html
File metadata and controls
29 lines (25 loc) · 881 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="A NASA app that returns the photo of the day for a given date">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="keywords" content="one, two, three">
<title>NASA Photo App</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section class="one">
<h1>NASA Photo App</h1>
<h3>Which date?</h3>
<input type="date" name="" value="" placeholder="YYYY-MM-DD" max="2025-10-01" min="1995-06-20">
<button type="button" name="button">Get Picture</button>
<section>
<h2 class="name"></h2>
<img src="" alt="">
<p><p>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>