-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (45 loc) · 2.21 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
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Major+Mono+Display" rel="stylesheet">
<!-- <link href="https://fonts.googleapis.com/css?family=Gloria+Hallelujah" rel="stylesheet"> -->
<link rel="stylesheet" type="text/css" media="screen" href="main.css">
</head>
<body>
<!--
I found a whether wwidget ,But it doesn't work .maybe it will work if I work on it more
https://openweathermap.org/widgets-constructor
<div id="openweathermap-widget-23"></div>
<script>window.myWidgetParam ? window.myWidgetParam : window.myWidgetParam = []; window.myWidgetParam.push({id: 23,cityid: '108410',appid: '5945547b5bcee86152aa271ca8d87860',units: 'metric',containerid: 'openweathermap-widget-23', }); (function() {var script = document.createElement('script');script.async = true;script.charset = "utf-8";script.src = "//openweathermap.org/themes/openweathermap/assets/vendor/owm/js/weather-widget-generator.js";var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(script, s); })();</script>
-->
<p id="weather1" class='weather' style="
text-align: right;
color: azure;
"> </p>
<p id="weather2" class='weather' style="
text-align: right;
color: azure;
"> </p>
<p id="weather3" class='weather' style="
text-align: right;
color: azure;
"> </p>
<div class="container">
<h1 id="date"></h1>
<h1 id="time"></h1>
<h3 id="qoutes"></h3>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E=" crossorigin="anonymous"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.js"></script>
<script src="main.js"></script>
<script src="weather.js"></script>
<script src="qoutes.js"></script>
<script src="time.js"></script>
</div>
</body>
</html>