-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab4.html
68 lines (68 loc) · 1.43 KB
/
lab4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>USE OF CLASS</title>
<style>
.intro{
color: blue;
background-color : pink;
font-family: verdana ;
font-size: 100%;
border: 3px outset aquamarine;
}
.head{
color: crimson;
background-color : aqua;
font-family: verdana ;
font-size: 100%;
border: 3px outset aquamarine;
}
table{
background-color : lightblue;
height:570; width:700;
border: 3px solid indigo;
}
</style>
</head>
<body bgcolor=springgreen>
<div class="intro"><h1 align="center">
Shruti Jai<br></h1>
<h4 align="center">E-Mail: [email protected]</h4>
</div>
<br>
<div class="head">
<h2 align="center"><i><u>ACADEMIC QUALIFICATIONS</u></i></h2>
</div>
<br>
<center>
<table border=3px>
<tr>
<td> <font color=navy><b><i>S. No.</b></i></td>
<td><font color=navy><b><i>Education</b></i></td>
<td><font color=navy><b><i>Percentage/Grade</b></i></td>
<td> <font color=navy><b><i>Year of Passing</b></i></td>
</tr>
<tr>
<td>1</td>
<td>Matriculation</td>
<td>10 CGPA</td>
<td>2016</td>
</tr>
<tr>
<td>2</td>
<td>Intermediate</td>
<td>91%</td>
<td>2018</td>
</tr>
<tr>
<td>3</td>
<td>B. Tech</td>
<td>9.15 (1st year)</td>
<td>2023</td>
</tr>
</table>
</center><br><br><br>
<marquee bgcolor=plum><i> Assignment done by Shruti Jai(1906185)</i></marquee>
</body>
</html>