-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
43 lines (40 loc) · 1.38 KB
/
about.html
File metadata and controls
43 lines (40 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description"
content="A page to find the rise and set times of the moon for any location. Uses goole maps to find your location.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="static/styles.css">
</head>
<body class="about-page">
<div class="container">
<header>
<div class="header-row">
<h1 class="header-title">🌙 About Moon Rise and Set</h1>
<div class="spacer"></div>
<nav class="nav">
<a class="nav-link" href="/"><i class="material-icons" style="font-size: 18px;">home</i> Home</a>
<a class="nav-link current" href="about">About</a>
<a class="nav-link" href="calendar">Calendar</a>
</nav>
</div>
</header>
<main>
<div class="page-content">
<div class="card">
<div class="card-content">
<p>Shows the moon rise and moon set time for today for your location.</p>
<p>Based on an <a href="http://www.stargazing.net/kepler/moonrise.html">algorithm</a> by Keith
Burnett.</p>
<p>Background image NASA/Goddard Space Flight Center Scientific Visualization.</p>
</div>
</div>
</div>
</main>
</div>
</body>
</html>