-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 1.62 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Rockville Weather</title>
<!-- <link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/github-light.css"> -->
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
section {
display: grid;
grid-template-columns: 1;
grid-template-rows: auto;
}
img {
width: 100%;
}
</style>
</head>
<body>
<div>
<header>
<h3>Capital Area Weather Forecast</h3>
</header>
<section>
<img id="temp_wind" alt="Temp / Wind" src="http://forecast.weather.gov/meteograms/Plotter.php?lat=39.08&lon=-77.15&wfo=LWX&zcode=MDZ504&gset=20&gdiff=6&unit=0&tinfo=EY5&ahour=0&pcmd=11111111000000000000000000000000000000000000000000000000000&lg=en&indu=1!1!1!&dd=&bw=&hrspan=24&pqpfhr=6&psnwhr=6">
<img id="precip" alt="Precipitation" src="http://forecast.weather.gov/meteograms/Plotter.php?lat=39.08&lon=-77.15&wfo=LWX&zcode=MDZ504&gset=20&gdiff=6&unit=0&tinfo=EY5&ahour=0&pcmd=00000000111111100000000000000000000000000000000000000000000&lg=en&indu=1!1!1!&dd=&bw=&hrspan=24&pqpfhr=6&psnwhr=6">
<img id="local_map" src="http://sirocco.accuweather.com/nx_mosaic_640x480_public/sir/inmasirmr_dca.gif" />
<img id="region_map" src="http://sirocco.accuweather.com/nx_mosaic_640x480c/sir/inmasirva_.gif" /></a>
</section>
</div>
</body>
</html>