-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsc.html
30 lines (28 loc) · 1.44 KB
/
csc.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="cscStyles.css">
<script type="text/javascript" src="env.js"></script>
</head>
<body>
<ul>
<li><a class="navbar" href="tow.html">Today's weather forecast</a></li>
<li><a class ="active" href="csc.html">Current snow conditions</a></li>
<li><a class ="navbar" href="tw.html">Tomorrow's weather forecast</a></li>
<li class="icon"><a href="index.html"><img src="/images/icon128-2.png" width = "32" height = "32"></a></li>
</ul>
<div class="sc">
<h1>Snow Conditions</h1>
<div class="main"><div class="dat">Bottom snow depth: </div> <div class="stage"><span class="dot-flashing"></span></div> <p id="sc1"></p> </div>
<div class="main"><div class="dat">Top snow depth: </div> <div class="stage"><span class="dot-flashing"></span></div> <p id="sc2"></p></div><br>
<div class="main"><div class="dat">Fresh snow: </div> <div class="stage"><span class="dot-flashing"></span></div> <p id="sc3"></p></div><br>
<div class="main"><div class="dat">Last snow fall date: </div> <div class="stage"><span class="dot-flashing"></span></div> <p id="sc4"></p></div>
</div>
<div class="location">
<p>Mountain:</p>
<p id="loc"></p>
</div>
<script src="cscScript.js"></script>
</body>
</html>