-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.5/css/bulma.min.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Astronomical Photo Of The Day</title>
</head>
<body>
<div class="mycontainer">
<div class="level">
<div class="level-left"><h1 class="title is-4">Astronomical Photo Of The Day</h1></div>
<div id="date" class="level-right">Photo for the day : </div>
</div>
<figure class="">
<img id="photo" alt="">
<strong><h1 id="title" class="title is-4"></h1></strong>
<strong><label class="label" id="author">Copyright </label></strong>
</figure>
<p class="p" id="description"></p>
</div>
<footer class="footer">
<div class="content has-text-centered">
<p>
<strong>Astronomical Photo Of The Day</strong> by <a href="https://github.com/Fiiranek">Franciszek Job</a>. The source code is licensed
<a href="http://opensource.org/licenses/mit-license.php">MIT</a>. Data is powered by
<a href="https://api.nasa.gov/">NASA Open APIs</a>.
</p>
<a href="https://bulma.io/" ><img src="https://bulma.io/images/made-with-bulma.png" alt="Made with Bulma" width="128" height="24" ></a>
</div>
</footer>
</body>
<script src="script.js"></script>
</html>