-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (38 loc) · 1.5 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
<!doctype html>
<html lang="en">
<head>
<title>Vanilla app</title>
</head>
<link href="./custom.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="./app.js"></script>
<body>
<div class="page-sun-activity">
<h1 class="page-sun-activity__header">Sunrise and Sunset</h1>
<form id="form" class="form" method="get">
<h2 class="form__header">Search for your sunrise and sunset times</h2>
<fieldset class="form_fieldset">
<div class="field">
<label class="field__label" for="postCode">Postcode</label>
<input name="postcode" required type="text" id="postCode" class="field__input field__input--text" maxLength="8" />
</div>
<div class="field">
<label class="field__label" for="date">Date</label>
<input name="date" required type="date" id="date" class="field__input field__input--date" />
</div>
</fieldset>
<footer class="footer">
<button class="footer__button" type="submit">Find</button>
</footer>
</form>
<div class="sun-activity-results">
<div class="sun-activity-results__result">
Your sunrise: <span id="rise" class="sun-activity-results__value"></span>
</div>
<div class="sun-activity-results__result">
Your sunset: <span id="set" class="sun-activity-results__value"></span>
</div>
</div>
</div>
</body>
</html>