-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (61 loc) · 2.22 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="pt-br">
<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>Astronomy Picture of the Day</title>
<link rel="stylesheet" href="./styles/global.css">
<link rel="stylesheet" href="./styles/image-wraper.css">
<link rel="stylesheet" href="./styles/main.css">
<link rel="stylesheet" href="./styles/card.css">
</head>
<body>
<header>
<h1>
Astronomy Picture of the Day
</h1>
</header>
<main>
<section class="image-section">
<div class="container">
<div class="container-image">
<div class="image-move-left">❮</div>
<div class="image-move-right">❯</div>
<div id="ImageWraper" class="image-wraper">
<img id="SkyImg" class="" src="" alt="" srcset="">
</div>
<div id="VideoWraper" class="image-wraper">
<iframe id="Video" src="" frameborder="0"></iframe>
</div>
</div>
</div>
</section>
<section class="aditional-image-section">
<div id='CardList' class="aditional-image-container">
</div>
</section>
<section class="info-section">
<div class="wraper-info">
<h1 id="Title">Select a date</h1>
<p class=""></p>
<input id="Date" type="date" name="">
<div class='img-info-container'>
<h3 id="ImgTitle"></h3>
<p id="ImgDescription">
</p>
<span id='ImgCopyright'></span>
</div>
</div>
</section>
</main>
<footer>
<div>
© Rafael Soares - <a href="https://github.com/RMacris"> Github </a>
</div>
</footer>
<script src="https://momentjs.com/downloads/moment.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="./js/index.js"></script>
</body>
</html>