-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (30 loc) · 892 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Darkous</title>
<!-- Insert Bootstrap Stylesheet Here -->
<div id = "container">
<table>
<tr>
<td id = "citylabel">-</td>
</tr>
<tr>
<td><img src="#" id = "cityweather"></td>
</tr>
<tr>
<td>
<input type="text" id = "cityinput" />
<button type = "submit" id = "citysearch">Search</button>
</td>
</tr>
</table>
</div>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha.6/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<!-- Script -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>