-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhobbies.html
61 lines (56 loc) · 1.55 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
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>my hoobies </title>
<style>
body{
background-color:lightslategrey;
padding: 10px;
margin: 10px;
border: 5px solid black;
}
h1{
color: blueviolet;
font-size: 38px;
font-style: bold ;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
text-align: center;
text-shadow: 2px 2px black;
}
ol{
font-size: 20px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
h2{
font-size: 25px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
</style>
</head>
<body>
<h1>Personal details </h1>
<h2> My Hobbies</h2>
<ol>
<li>
<p>Dancing</p>
</li>
<li><P>Reading books</P></li>
<li><P>Video editing </P></li>
<li><P>Photoshop </P></li>
</ol>
<hr/>
<h2> My Personal Details</h2>
<ul>
<li>Live in Lucknow. </li>
<li>Phone no. - 8604879594</li>
<li>Email- [email protected] </li>
<li>Language :
English ,Hindi
</li>
<li>Religion : Indian </li>
<li>Occupation : fresher </li>
</ul>
</body>
</html>