-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.85 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 1.85 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
<!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="index.css">
<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=Amiri&family=Playfair+Display:ital,wght@0,400;0,700;1,700&display=swap" rel="stylesheet">
<title>Astronomy Picture of the Day</title>
<link rel="shortcut icon" type="svg" href="Astronomy Picture of the Day.svg"/>
</head>
<body>
<nav>
<a href="https://55021.github.io/Projeto-APOD/" class="new-date invisible">NEW DATE</a>
</nav>
<section class="info">
<img class="logo" src="Astronomy Picture of the Day.svg" alt="">
<div class="identification invisible">
<p class="title"></p>
<p class="subtitle"></p>
</div>
<div class="input">
<p class="input-title">Select a date and find out its NASA APOD!</p>
<div class="date-input">
<input type="date" name="apod-date" id="apod-date">
<button class="apodbtn">See APOD</button>
</div>
</div>
<div class="description invisible">
<p></p>
</div>
<footer><a href="https://github.com/55021">Maria Rita</a> 2022 // Todos os direitos reservados</footer>
</section>
<section class="media">
<img class="pic invisible" src="" alt="">
<iframe class="vid invisible" src="" frameborder="0"></iframe>
<span class="copyright invisible"></span>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="index.js"></script>
</body>
</html>