-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 717 Bytes
/
index.html
File metadata and controls
31 lines (30 loc) · 717 Bytes
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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Weather Man</title>
<link rel="stylesheet" href="">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="container"
<h1>Current Temperature: <span>70</span>ºF</h1>
<input placeholder= "zipcode">
<button>lookup</button>
<button class= "button2">location</button>
<table>
<tr>
<td><img></td>
<td><img></img></td>
<td><img></img></td>
<td><img></img></td>
<td><img></img></td>
</tr>
</table>
<div>
<script src="main.js"></script>
</div>
</body>
</html>