-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathprofile.html
50 lines (42 loc) · 1.42 KB
/
profile.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>
<head>
<style>
body{
background-color: aquamarine;
font-style: oblique;
}
h3{
text-decoration-color: blueviolet;
text-decoration-line: underline;
text-align: center;
}
p{
text-align: left;
text-indent: 10px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}
h4{
text-decoration-color: blueviolet;
text-decoration-style: solid;
text-decoration-line: underline;
text-align: start;
}
</style>
<h3>MY PROFILE</h3>
</head>
<body>
<h4>INTRO ABOUT MYSELF...</h4>
<p style="color:blue" >
My name is Shidharth.I am currently a student at NITK Surathkal.<br>
I am from bangalore.I studied in Kumarans uptill 10th.
</p>
<h4>MY HOBBIES
</h4>
<p style="color:red">I like reading novels by Andy McDermott,Dan Brown.<br>
I like playing basketball.Apart from this i also like to listen to music.</p>
<h4>ACHIEVEMENTS</h4>
<p style="color: teal">I got into NITK Surathkal.<br>
I have played zonal level basketball for my school</p>
</body>
</html>