File tree 1 file changed +93
-0
lines changed
1 file changed +93
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 " />
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 " />
6
+ < title > Document</ title >
7
+ < style >
8
+ h1 {
9
+ text-align : center;
10
+ color : blue;
11
+ font-size : 34px ;
12
+ margin-bottom : 5px ;
13
+ }
14
+ h2 {
15
+ text-align : center;
16
+ font-size : 34px ;
17
+ margin-top : 5px ;
18
+ }
19
+ ul {
20
+ text-align : center;
21
+ list-style : none;
22
+ padding : 0 ;
23
+ }
24
+ li {
25
+ font-size : 20px ;
26
+ margin : 45px ;
27
+ transition : all 200ms ease-in-out;
28
+ border-radius : 10px ;
29
+ max-width : 400px ;
30
+ margin : 0 auto;
31
+ }
32
+
33
+ li : hover {
34
+ background : rgb (255 , 255 , 195 );
35
+ }
36
+ button {
37
+ padding : 20px 50px ;
38
+ margin : 0 auto;
39
+ }
40
+ button {
41
+ background : # 1a64d6 ;
42
+ color : white;
43
+ border-radius : 30px ;
44
+ font-size : 16px ;
45
+ padding : 16px 24px ;
46
+ transition : all 200ms ease-in-out;
47
+ border-color : # 1a64d6 ;
48
+ box-shadow : # dfdfe0 0px 8px 8px ;
49
+ margin : 20px auto;
50
+ margin-bottom : 1px ;
51
+ }
52
+ button : hover {
53
+ background : white;
54
+ color : # 1a64d6 ;
55
+ cursor : pointer;
56
+ }
57
+ .cloud {
58
+ text-align : center;
59
+ font-size : 20px ;
60
+ }
61
+ .degree {
62
+ font-weight : 100 ;
63
+ }
64
+ .vin {
65
+ text-align : center;
66
+ color : rgb (124 , 123 , 123 );
67
+ font-size : 16px ;
68
+ margin-top : 4px ;
69
+ }
70
+ </ style >
71
+ </ head >
72
+ < body >
73
+ < div class ="cloud "> 🌤️</ div >
74
+ < h1 > Currently 21° in Tehran</ h1 >
75
+ < h2 > < span class ="degree "> 13°</ span > / 23°</ h2 >
76
+ < ul >
77
+ < li >
78
+ 🌧️ < strong > Tomorrow</ strong >
79
+ < p > 10°/ < strong > 22°</ strong > </ p >
80
+ </ li >
81
+ < li >
82
+ ⛅ < strong > Saturday</ strong >
83
+ < p > 15°/ < strong > 17°</ strong > </ p >
84
+ </ li >
85
+ < li >
86
+ ☀️ < strong > Sunday</ strong >
87
+ < p > 25°/ < strong > 28°</ strong > </ p >
88
+ </ li >
89
+ < br /> < button > change city</ button >
90
+ </ ul >
91
+ < div class ="vin "> Coded by Sarvin Sendani</ div >
92
+ </ body >
93
+ </ html >
You can’t perform that action at this time.
0 commit comments