-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout_Me.html
More file actions
74 lines (61 loc) · 1.68 KB
/
Copy pathAbout_Me.html
File metadata and controls
74 lines (61 loc) · 1.68 KB
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
68
69
70
71
72
73
74
<html>
<body>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
color: purple;
font-size:130%
}
.topnav {
overflow: hidden;
background-color: black;
}
.topnav a {
float: left;
color:white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: black;
color: white;
}
.topnav a.active {
background-color:black;
color: white;
}
</style>
</head>
<body>
<div class="topnav">
<a class="active" href="index.html">Index</a>
<a href="About_Me.html">About Me</a>
<a href="Interests.html">Interests</a>
<a href="gallery.html">Gallery</a>
<a href="Contact_Me.html">Contact Me</a>
<a href="Questions.html">Questions</a>
</div>
<h1><h1 style ="color: blue;">About Me</h1>
<p id="demo" style="color:red;"></p>
<script>
document.getElementById("demo").innerHTML = Date();
</script>
<ul style="list-style-type:square">
<ul style = "color =red;">
<li>Hi, My Name is Thuvaritha Sivakumar</li>
<li>I am from Plainsboro, NJ</li>
<li>I am a business major, planning to take Accounting as my concentration.</li>
<li>I used to be in the varsity fencing team in my Highschool.</li>
<li>I love to traveling around the world, and my dream country to visit is Australia.</li>
<li> My favorite animal are elephants.</li>
<li>I am excited to be in this class; I learn a lot of new information.</li>
<li>I definitely enjoyed making this website.</li>
</ul>
<body bgcolor="lavender">
<img src="pictures/fencing.JPG" width="200" height="200">
</body>
</html>