-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (64 loc) · 2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Weather Checker</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="icon" type="image" href="logo.png">
</head>
<body>
<main>
<div>
<div id="cloud">
<img src="logo.png" height="350px" width="400px">
</div>
<form>
<div class="box">
<input type="search" id="search" name="search" placeholder="Search your City">
</div>
</form>
<div class="box" id="whether">
<div>
<!--
<img src="https://ssl.gstatic.com/onebox/weather/64/partly_cloudy.png" alt="whether">
</div>
<div>
<h1> 26°C </h1>
<h2> Clear </h2>
</div>
</div>
<div class="list">
<h4> Wind Speed </h4>
<h4> Feel Likes </h4>
<h4> Description </h4>
<h4> Visibility </h4>
-->
<!-- try it to design a card -->
<!-- <div id="main-card">
<div id="under-main">
<h1> City</h1>
<div class="l-list">
<h1> 26°C </h1>
<h2> Clear </h2>
</div>
</div>
<div id="under-main-2">
<i class="fa-solid fa-moon" id="btn"></i>
<img src="https://ssl.gstatic.com/onebox/weather/64/partly_cloudy.png" alt="whether" height="200vh" width="200vw">
</div>
</div>
</div>
--->
<div>
</div>
</div>
</main>
</div>
<script src="script.js" ></script>
</body>
</html>