-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacademic.html
102 lines (102 loc) · 1.83 KB
/
academic.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE>
<html>
<head>
<title>
Academic Proficiency
</title>
</head>
<style>
body
{
background-color: #efc050;
}
ul
{
margin: 0px;
padding: 0px;
overflow: hidden;
background-color: #ce9613;
}
li
{
display: inline;
float: left;
}
h3, table
{
color: white;
text-align: center;
border-collapse: collapse;
}
table
{
background-color: #ce9613;
}
td, th
{
border: 1px solid #936b0e;
padding: 15px;
}
h1
{
background-color: #e9ab18;
display: inline-block;
box-shadow: 2px 2px black;
border-radius: 15px;
align-self: center;
padding: 15px;
}
a:link, a:visited
{
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: block;
}
th, h3
{
font-size: 20px;
}
a:hover, a:active
{
background-color: white;
color: #ce9613;
text-decoration: none;
}
</style>
<body>
<center><h1>John Doe</h1></center>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="academic.html">Academic Proficiency</a></li>
<li><a href="interest.html">Interest And Hobbies</a></li>
<li><a href="dreams.html">Dreams</a></li>
<li><a href="image.html">Image Gallery</a>
<li style="float: right;"><a href="contact.html">Contact Details</a></li>
</ul>
<h3>Academic Profiency</h3>
<table align="center">
<tr>
<th>Education Level</th>
<th>School/College name</th>
<th>Grade/Percentage</th>
</tr>
<tr>
<td>Class 10th</td>
<td>KV AFS Avadi</td>
<td>10.0 GPA</td>
</tr>
<tr>
<td>Class 12th</td>
<td>DPS Delhi</td>
<td>100%</td>
</tr>
<tr>
<td>B.Tech</td>
<td>IIT Delhi</td>
<td>10.0 CGPA</td>
</tr>
</table>
</body>
</html>