-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathq1-a1.html
49 lines (42 loc) · 1.67 KB
/
q1-a1.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
<!--Q1 write Html code to display your personal details.
Q2 modify above using text formatting( fonts, textsize, alignment)-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Details</title>
<style>
body{
background-color: antiquewhite;
}
</style>
</head>
<body>
<header>
<center><u style="color: rgb(217, 30, 30);"><h1 style="color: rgb(217, 30, 30);">PERSONAL DETAILS</h1></u></center>
</header>
<div>
<i><p>This page contains my personal details, as follows:</p></i>
<ul>
<li>Name-<strong>Lavanya Singh</strong></li>
<li>USN-<b>1MS23CY037</b></li>
<li>Course-<b>CSE(Cyber Security)</b></li>
<li>Section-<b>H</b></li>
<li>Birthday-<b>25 June 2005</b></li>
<li>Age-<b>19</b></li>
<li>Height-<b>5'9''</b></li>
<li>Blood grp-<b>B+</b></li>
<li>Hometown-<b>Pune</b></li>
<li>Hobbies- Reading pyschological thrillers & Russian Literature,<br>
Cycling ,Watching true-crime docs, Listening to music, </li>
</ul><hr>
</div>
<div>
<p>Links to other Assignments:</p>
<a href=".\q3-a1.html">Q3-Write html code to display the list of courses of 1st sem (ordered & unordered)</a><br>
<a href=".\q4-a1.html">Q4-Write html code to generate marks details of 1st sem in Table format</a><br>
<a href=".\q5-a1.html">Q5-Create your personal Webpage(Resume)</a><br>
</div>
</body>
</html>