-
Notifications
You must be signed in to change notification settings - Fork 0
/
education.html
56 lines (50 loc) · 856 Bytes
/
education.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
<!DOCTYPE html>
<html>
<head>
<style>
#header {
background-color:#746A14;
color:white;
text-align:center;
padding:10px;
}
#nav {
line-height:30px;
background-color:#9B9377;
height:750px;
width:170px;
float:left;
padding:5px;
}
#section {
width:350px;
float:left;
padding:1px;
background: #faf8ef;
}
#footer {
background-color:#746A14;
color:white;
clear:both;
text-align:center;
padding:5px;
}
</style>
</head>
<body>
<div id="header">
<h1>Lavika Kurda</h1>
</div>
<div id="nav">
<a href = "my_profile.html">About me</a><br>
<a href = "education.html">Education</a><br>
<a href = "2048.html">2048</a><br>
<a href = "2058.html">2058</a><br>
</div>
<div id="section">
Hi..This is all about my education
</div>
<div id="footer">
</div>
</body>
</html>