This repository has been archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (52 loc) · 2.71 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
42
43
44
45
46
47
48
49
50
51
52
<html>
<head>
<link rel="stylesheet" href="css/flipclock.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Courgette" rel="stylesheet">
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="js/theysaidso.js"></script>
</head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<body class="clockBody">
<img src="css/Full_Screen.png" value="Fullscreen" class="fullscreenButton" onclick="toggleFullScreen(document.body)" />
<div id="dialog" title="Please Set Your Default Home Location">
<div id="ownLocationInitital">
<input class="cityInitial" name="cityInitial" autocomplete="off" id="cityInitial" required>
</div>
<button type="submit" class="doneLocationInitial" onclick="initialLoad()">Done</button>
</div>
<div class="AllDiv">
<div class="content">
<div class="your-clock"></div>
<div class="clock"></div>
<div class="thought">
<script>TheySaidSo.render({ qod_category: 'inspire'});</script>
</div>
</div>
<div id="weatherPlace" class="footer">
<div id="weather" z-index="100"></div>
<div class="buttonDiv">
<button class="js-geolocation" onclick="locate()">Enter Your location</button>
<button class="location" onclick="moreData()">Show More</button>
</div>
<div id="ownLocation">
<input id="cityAfter" class="cityAfter" name="cityAfter" autocomplete="off" required>
<button type="submit" class="doneLocation" onclick="city()" style="height: 35px;">Done</button>
<button type="submit" class="clear-default-location" onclick="clearLocation()">Clear Default Location</button>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="//maps.googleapis.com/maps/api/js?key=AIzaSyDOzS7kH3JLGlHFYRbdoTkhy7vMYlypYlI&libraries=places&language=en"></script>
<script src="//code.jquery.com/jquery-2.1.4.min.js" type="text/javascript"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script src="js/jquery.city-autocomplete.js" type="text/javascript"></script>
<script src="js/jquery.simpleWeather.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/flipclock.js"></script>
<script src="js/app.js?version=1"></script>
<!-- <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDOzS7kH3JLGlHFYRbdoTkhy7vMYlypYlI&callback=initMap"
type="text/javascript"></script> -->
</html>