-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·96 lines (63 loc) · 2.92 KB
/
index.html
File metadata and controls
executable file
·96 lines (63 loc) · 2.92 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html> <!-- DOCTYPE Declaration -->
<html> <!-- Begin HTML Structure -->
<head> <!-- Begin Head Elements -->
<!-- Meta Tags -->
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1">
<!-- Link & Script Tags -->
<link rel="stylesheet" type="text/css" href="style.css" media="screen">
<link href='http://fonts.googleapis.com/css?family=Rouge+Script' rel='stylesheet' type='text/css'> <!-- Font for "Fancy" in header-->
<link href='http://fonts.googleapis.com/css?family=Arvo:400,700,400italic,700italic' rel='stylesheet' type='text/css'> <!-- Paragraph font-->
<!-- Website Title -->
<title>Fancy APOD</title>
</head> <!-- End Head Elements -->
<!-- HTML Body -->
<body>
<!-- Header Div & Elements -->
<div class="header">
<h1 class="first-word">Fancy</h1>
<h1 class="second-word">APOD</h1>
</div>
<!-- API Elements & Main Container -->
<h1 id="apod_title"></h1>
<div class="fancy-date"> <!-- Custom JavaScript Implemented -->
<h2>NASA's Astronomy Photo of the Day</h2><br>
<h2 id="day"></h2>
<h2 id="month"></h2>
<h2 id="date"></h2>
<h2 id="year"></h2>
</div>
<div id="container">
<!-- If API Returns Media_Type = image -->
<a id="image-link" href=""><img id="apod_img_id" alt"" title""></a>
<!-- If API Returns Media_Type = video -->
<iframe id="apod_vid_id" type="text/html" width="640" height="385" frameborder="0" src="" allowfullscreen></iframe>
<!-- Image Copyright Info -->
<p id="copyright"></p>
<!-- API-Returned Explanation for APOD Object -->
<div class="explanation">
<p id="apod_explaination"></p>
</div>
</div> <!-- End API Elements and Main Container -->
<!-- Footer Elements -->
<div class="footer">
<!-- APOD Facebook Icon -->
<a href="https://www.facebook.com/AstronomyPictureOfTheDay" target="_blank"><img src="yellow-icons/facebook-square.png"></a>
<!-- APOD Twitter Icon -->
<a href="https://twitter.com/apod" target="_blank"><img src="yellow-icons/twitter.png"></a>
<!-- APOD Instagram Icon -->
<a href="https://instagram.com/astronomypicturesdaily/" target="_blank"><img src="yellow-icons/instagram.png"></a>
<!-- Friends of APOD (FAPOD) Link to Website -->
<div class="FAPOD-button">
<a href="http://friendsofapod.org/" target="_blank"><p class="first-word">Friends of</p><p class="second-word">APOD</p></a>
</div>
<!-- Link to NASA'S Original APOD Website -->
<div class="NASA-APOD-button">
<a href="http://apod.nasa.gov/apod/astropix.html" target="_blank"><p class="first-word">Original</p><p class="second-word">NASA APOD</p></a>
</div>
</div> <!-- End Footer Elements-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="app.js"></script>
<script src="modal.js"></script>
</body> <!-- End Body -->
</html> <!-- End HTML Structure-->