-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathIndex.html
82 lines (76 loc) · 2.11 KB
/
Index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML Assignment</title>
<link rel="stylesheet" href=" " />
</head>
<body>
<center>
<h1>HTML Assignment</h1>
<p>
<b>
Q.3 Create description list to display five students name of your
class with roll number?
</b>
</p>
</center>
<dl>
<dt>Vivek Sharma</dt>
<dd>0905IT191067</dd>
<dt>Yash Verma</dt>
<dd>0905IT191069</dd>
<dt>Shubham Gupta</dt>
<dd>0905IT191059</dd>
<dt>Pratham Kelkar</dt>
<dd>0905IT191044</dd>
<dt>Ujjawal Batham</dt>
<dd>0905CS191189</dd>
</dl>
<center>
<p>
<b>
Q.4 Create a HTML file with the help of following formatting and basic
tag :-br, sup, sub, small?
</b>
</p>
</center>
<p style="font-size: 2.3em">
I have lots of friends in school and at home. All are my good friends.
Amongst them,<br />
Yash is a friend who is very special to me.
<sup>he is in my class and my neighbor too.</sup> I am lucky enough to
have a true friend like Yash. <br />
I value his friendship.We both are class fellows for
<sub> last four years.</sub> yash has many good qualities.<br />
his helpful nature makes people like his. My mothis too is fond of his. he
is soft-spoken and gives respect to elders.<br />
he is an ideal boy and his behavior is a model for othis students.
<small> he is very punctual and regular to school.</small>
</p>
<style>
h1{
align-item:center;
color:green;
}
p {
display : flex;
justify-content: center;
font-size: 2em;
}
dl {
font-size: 1.4em;
text-align: center;
}
sup,
sub,
small {
text-decoration: underline;
letter-spacing: 2px;
font-family:bold;
}
</style>
</body>
</html>