-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_1.htm
111 lines (105 loc) · 2.73 KB
/
index_1.htm
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
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>
Educational Qualification
</title>
<link href='https://fonts.googleapis.com/css?family=Roboto Slab' rel='stylesheet'>
<style> body {
background-color: #DCDCDC;
font-family: 'Roboto Slab';
}
table,tr,th,td{
border:3px solid red;
}
table{
border-collapse: collapse;
width: 80%;
margin-left: 10%;
}
th , td {
text-align: left;
padding: 8px;
font-size: 20px;
}
th{
background-color:#333035 ;
color: #d8d87a;
}
tr:nth-child(odd) {background-color: #cc9090;}
</style>
</head>
<body>
<h1><center>
Educational Qualifications
</center>
</h1>
<table cellspacing="10px" align="center">
<thead>
<tr>
<th>
Course
</th>
<th>
School/College
</th>
<th>
Year of Passing
</th>
<th>
Percentage
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
B.Tech
</td>
<td>
NIT Patna
</td>
<td>
2023
</td>
<td>
9.15 CGPA
</td>
</tr>
<tr>
<td>
Senior Secondary
</td>
<td>
The Aditya Birla Public School, Renukoot
</td>
<td>
May 2019
</td>
<td>
95%
</td>
</tr>
<tr>
<td>
Secondary
</td>
<td>
The Aditya Birla Public School, Renukoot
</td>
<td>
May 2017
</td>
<td>
10 CGPA
</td>
</tr>
</tbody>
</table>
<br>
<hr>
<marquee><font size=7 color="FF3C3C">Digvijay Srivastava 1906188</font></marquee>
<hr>
</body>
</html>