-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (26 loc) · 949 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
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<script src="jquery.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@900&display=swap" rel="stylesheet">
<script src="script.js"></script>
</head>
<body>
<div class="title">
<h1>Weather App</h1>
<div class="card">
<img src="https://nordicapis.com/wp-content/uploads/5-Best-Free-and-Paid-Weather-APIs-2019-e1587582023501.png" alt="Avatar" style="width:100%">
<div class="container">
<input type="text" id="inp">
<a href="#" type="submit" id="btn" class="myButton">Search</a>
</div>
</div>
<div class="box_1">
<ul id="list"></ul>
</div>
</body>
</html>