-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
26 lines (26 loc) · 980 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weather App</title>
</head>
<body oncontextmenu="return false">
<nav class="navbar navbar-dark bg-info">
<a class="navbar-brand" href="index.html">
<img src="logo.png" width="30" height="30" class="d-inline-block align-top" alt="">
Weather App
</a>
</nav>
<br><br>
<div class="center">
<form action="/" method="post">
<input type="text" name="country" placeholder="Type your city/country">
<br><br>
<button class = "btn" type="submit" name="button">Find the weather</button>
</form>
</div>
</body>
</html>