-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 928 Bytes
/
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
<!DOCTYPE HTML>
<html>
<head>
<title>Our Weather Widget Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- Widget scripts -->
<link rel="stylesheet" type="text/css" href="css/WeatherWidget.css">
<script src="https://code.jquery.com/jquery-1.11.1.js"></script>
<script src="https://code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<script src="js/moment.js"></script>
<script src="js/moment-timezone-with-data.js"></script>
<script>
moment().format();
</script>
<!-- Just purely visual background effects - non-widget-related! -->
<link rel="stylesheet" type="text/css" href="css/WinXP.css">
<script src="js/WinXP.js"></script>
<!-- Widget scripts -->
<script src="js/WeatherWidget.js"></script>
</head>
<body>
<div id="widget"></div>
<!-- Just purely visual background effects - non-widget-related! -->
<div id="winXP"></div>
</body>
</html>