forked from burragedanielle/project_one
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (78 loc) · 3.35 KB
/
index.html
File metadata and controls
103 lines (78 loc) · 3.35 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
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>The Golden Hour</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<!-- FONTS -->
<link href="https://fonts.googleapis.com/css?family=Cedarville+Cursive&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Be+Vietnam:100,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<!-- JQUERY -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/momentjs/2.12.0/moment.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<div class="wrapper">
<div class="container heading">
<div class="row-9">
<h1 id="pageTitle">Golden <span id='hour-color'>Hour</span></h1>
</div>
<div class="row-9">
<p class="description">Golden Hour is the period of daytime after sunrise or before sunset when daylight is redder
and softer, making it the perfect time to capture photographs.
</p>
</div>
</div>
<div class="container" id="input-field-container">
<div class="row small-description">
<p>Plan your next Golden Hour project using your location and date.</p>
</div>
<div class="row" id="inputFields">
<div class="form-group column1 col-md-5">
<label class="formText">City</label>
<input type="text" class="form-control" id="city-name" aria-describedby="emailHelp" name="muverName">
</div>
<div class="form-group column2 col-md-5">
<label class="formText">State (U.S.)</label>
<input type="text" class="form-control" id="state-id" aria-describedby="emailHelp" name="muverPhone">
</div>
<div class="form-group column3 col-md-5">
<label class="formText">Date</label>
<input type="text" class="form-control" id="datepicker">
</div>
<div class="form-group column4 col-md-2">
<button id="submit" type="submit" class="btn btn-light mb-2">Go</button>
</div>
</div>
<div class="container" id="sunTimes">
<div class="separator line-separator">♦</div>
<div class="row justify-content-between">
<div class="col-md-5 sun-times" id="sunrise">
</div>
<div class="col-md-5 sun-times" id="sunset">
</div>
</div>
</div>
<div id='lat'></div>
<div id='long'></div>
<div id='results'></div>
<div class="container" id="sunPictures">
</div>
</div>
<!-- JAVASCRIPT -->
<script src="assets/javascript/app.js"></script>
<script src="assets/javascript/images.js"></script>
</body>
<footer class="footer">
<div class ="container">
<span class="text-center">Made by Delia Bouhan, Harris Lane, Peter Smith and Danielle Burrage for KU Full Stack Web Development Bootcamp</span>
</div>
</footer>
</html>