-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.04 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.04 KB
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
<!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.0" />
<title>WeatherApp</title>
</head>
<body
style="
background-color: #e5e5f7;
opacity: 1;
background-image: linear-gradient(135deg, #fff9ca 25%, transparent 25%),
linear-gradient(225deg, #fff9ca 25%, transparent 25%),
linear-gradient(45deg, #fff9ca 25%, transparent 25%),
linear-gradient(315deg, #fff9ca 25%, #ffdeb4 25%);
background-position: 10px 0, 10px 0, 0 0, 0 0;
background-size: 100px 100px;
background-repeat: repeat;
"
>
<div style="text-align: center; margin-top: 10%">
<h1>THE WEATHERAPP</h1>
<h3>(powered by openweatherapp)</h3>
<form action="/" method="post">
<label for="inp">Enter City: </label>
<input type="text" id="inp" name="city" />
<button type="submit">GO</button>
</form>
</div>
</body>
</html>