forked from aligreen/apod_chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apod.html
23 lines (23 loc) · 947 Bytes
/
apod.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<html>
<head>
<link href="style.css" type="text/css" rel="stylesheet" />
<script src="jquery.min.js" type="text/javascript"></script>
<script src="moment.js" type="text/javascript"></script>
<script src="script.js" type="text/javascript"></script>
<script src="src/apod.js" type="text/javascript"></script>
</head>
<body>
<img id="background" src='' />
<h1><a href='http://apod.nasa.gov'>Astronomy Picture of the Day</a></h1>
<div class="info-icon">?</div>
<div class="info-container">
<div class="title"></div>
<div class="info"></div>
</div>
<div class="credit-icon">i</div>
<div class="credit">All images are from <a href="http://apod.nasa.gov/">APOD</a>. Extension made by <a href="http://twitter.com/ohohbot">Ali</a> and <a href="http://twitter.com/flahertyb">Bart</a> for fun.</div>
<div class="time"></div>
<div class="date"></div>
</body>
</html>