-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
53 lines (50 loc) · 2.79 KB
/
index2.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
<!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-auto-columns: auto;
grid-row: 1;
}
section div {
display: grid;
grid-column: auto;
grid-row: 1;
}
img {
width: 100%;
}
</style>
</head>
<body>
<div>
<header>
<h3>Capital Area Weather Forecast</h3>
</header>
<section>
<div>
<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"><br>
<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">
</div>
<div>
<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=24&pcmd=11111111000000000000000000000000000000000000000000000000000&lg=en&indu=1!1!1!&dd=&bw=&hrspan=24&pqpfhr=6&psnwhr=6"><br>
<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=24&pcmd=00000000111111100000000000000000000000000000000000000000000&lg=en&indu=1!1!1!&dd=&bw=&hrspan=24&pqpfhr=6&psnwhr=6">
</div>
<div>
<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=48&pcmd=11111111000000000000000000000000000000000000000000000000000&lg=en&indu=1!1!1!&dd=&bw=&hrspan=24&pqpfhr=6&psnwhr=6"><br>
<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=48&pcmd=00000000111111100000000000000000000000000000000000000000000&lg=en&indu=1!1!1!&dd=&bw=&hrspan=24&pqpfhr=6&psnwhr=6">
</div>
</section>
</div>
</body>
</html>