-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
48 lines (38 loc) · 1.65 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- /////////////*******////////// -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="public/index.css">
<!-- /////////////*******////////// -->
</head>
<body>
<div class="container-fluid bg-dark text-white top">
<h1> Weather Nation</h1>
</div>
<div class="row">
<div class="w-50 mx-auto">
<img src="public/icon.png" alt="image">
<form action="\" method="POST">
<input class="btn btn-outline-dark place" name="place" type="text" placeholder="place">
<br>
<button class="btn btn-outline-danger search" name="submit" type="submit" >Search</button>
</form>
</div>
</div>
<footer>
<hr>
<p>©2020 Max_keviv</p>
<p>@developer</p>
</footer>
</body>
</html>