-
Notifications
You must be signed in to change notification settings - Fork 10
/
hobbies.html
50 lines (49 loc) · 1.05 KB
/
hobbies.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<style>
body{
background-color: rgb(105, 55, 55);
padding: 40px;
margin: 0px;
}
#hobbycontainer{
color: black;
}
h2{
font-size: 40px;
padding: 30px 0px;
margin: 0px;
text-align: center;
}
h3{
padding: 20px 0px;
margin: 0px;
font-size: 28px;
text-align: center;
}
ol{
padding: 40px;
}
li{
font-size: 20px;
}
</style>
</head>
<body>
<div id="hobbycontainer">
<h2>My hobbies</h2>
<h3>are mentioned below</h3>
<ol>
<li>I like to write shayaris.</li>
<li>I like to do coding.</li>
<li>Neeed to start reading books.</li>
<li>Listen songs and want to be a big businessman.</li>
<li>I am blockchain developer</li>
<li>I am web developer</li>
</ol>
</div>>
</body>
</html>