-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather_map.html
executable file
·88 lines (86 loc) · 3.7 KB
/
weather_map.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
<title>Weather Forecast</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Oswald|Open+Sans+Condensed:300" rel="stylesheet">
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyA6QF_vEdSzxYly9t2UZSbUgPzvVuqeQ30&libraries=places"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.1/moment.js"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/weather_map.css">
</head>
<body>
<div id="header" class="container-fluid">
<div class="row">
<div class="col-md-6 col-sm-6 col-xs-6">
<img src="img/hmt3design-header.png" height="130" width="300" class="img-responsive"/>
</div>
<div class="col-md-6 col-sm-6 col-xs-6">
<p id="address-header"><strong>Harry M. Thomas III</strong><br>
<a href="mailto:[email protected]">[email protected]</a><br>
210.683.4821</p>
</div>
</div>
</div>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">HMT3Design.com</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="index.html">Welcome</a></li>
<li><a href="resume.html">Resume</a></li>
<li class="active"><a href="portfolio.html">Portfolio<span class="sr-only">(current)</span></a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="container-fluid">
<div id="weather-container" class="container">
<h2>Weather forecast</h2>
<div class="row">
<div id="current-city" class="col-md-4 col-sm-4"></div>
</div>
<div class="table-responsive">
<table class="table table-hover">
<thead class="thead-default">
<tr>
<th>Date</th>
<th>Max</th>
<th>Min</th>
<th> </th>
<th>Forecast</th>
<th>Humidity</th>
<th>Wind</th>
<th>Barometer</th>
</tr>
</thead>
<tbody id="weather-report"></tbody>
</table>
<!-- This is where I will programmatically send weather data. -->
</div>
</div>
<div id="google-map" class="container-fluid">
<input id="pac-input" class="controls" type="text" placeholder="Search Box">
<div id="map-canvas"></div>
</div>
</div>
</body>
<script src="js/weather_map.js"></script>
</html>