-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.71 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
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col s12 m8 " >
<h2 class="red lighten-2 white-text center-align" style="padding: 1rem;">Brian's Weather Page</h2>
</div>
</div>
<div class="row">
<div class=" col s12 m6">
<h5 class="blue-text">Enter 5 digit zip code to view current weather</h4>
<div class="divider"></div>
<div class="section">
<div class="input-field col s6">
<input type="text" id="zipcode" placeholder="zipcode">
<label for="city" class= "h5">Zipcode</label>
</div>
</div>
<button class="btn waves-effect waves-light" type="submit" id='submit'>Submit
<i class="material-icons right">send</i>
</button>
</div>
</div>
<div class="row">
<div class="col s12 m6">
<div id="current_weather">
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.js"></script>
<script src="app.js"></script>
</body>
</html>