-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
31 lines (31 loc) · 1.24 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
<!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">
<title>wttr-switcher</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<style>
#weather-input {
width:76px;
}
</style>
</head>
<body>
<div class="container mt-3">
<div class="d-inline-block">
<img id="weather-img" class="img-fluid rounded" src="https://wttr.in/London_0pq_transparency=200_lang=en.png" alt="Current weather in London">
<form id="weather-form">
<div class="input-group mt-1">
<input id="weather-input" class="form-control" type="text" placeholder="Weather in..." aria-label="Weather in...">
<div class="input-group-append">
<button id="weather-btn" class="btn btn-primary" type="button">OK</button>
</div>
</div>
</form>
</div>
</div>
<script defer src="assets/js/main.js"></script>
</body>
</html>