-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (65 loc) · 1.28 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
<!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>check ur weather report</title>
<style>
*{
margin: 0px;
padding: 0px;
}
body{
display: grid;
place-content: center;
height: 100vh;
background: linear-gradient(35deg,#2e86de 25%,#48dbfb 80%);
color: white;
gap: 50px;
text-align:center;
}
.temparature_description{
height: 100px;
display: flex;
flex-direction: column;
gap: 30px;
align-items: center;
}
#temp{
font-size:50px;
}
h2{
font-size: 40px;
}
h2 span{
margin: 9px;
font-size: 40px;
}
sup{
font-size:25px;
}
.location{
display: flex;
gap: 300px;
}
</style>
</head>
<body>
<h1>Weather Report</h1>
<div class="location">
<div>
<h1>Time Zone</h1>
<div id="time"></div>
<div id="city"></div>
</div>
<p id ="icon">icon</p>
</div>
<div class="temparature_description">
<div> <h2><span id="temp">34</span><sup>0</sup><span>C</span> </h2>
</div>
<p id="des"></p>
</div>
<script src="script.js"></script>
</body>
</html>