Page 158 - Web Applications (803) Class 11
P. 158
</blockquote>
<del> I want to delete this content.</del>
<ins> This is the new content I want to insert.</ins>
<p>
<dfn> My HTML Class </dfn> is a student-friendly computer science portal.
It includes articles and quizzes on computer science and programming
that are well written, well thought out, and well explained.
</p>
<kbd> Hi There - This is a Keyboard input </kbd>
<pre> Dear Student,
Congratulations !!
We are delighted to inform you that you are going to be part of MHC
journey.
Regards
This is a predefined formatted text </pre>
</body>
</html>
2. Type the following code and see the output.
<!DOCTYPE html>
<html>
<head>
<title>Physical Tags</title>
</head>
<body bgcolor="pink" text="blue">
<h1> Physical Tags </h1>
Text with effects <br> <br>
<b> 803 Web Applications- This is Bold text </b> <br> <br>
<big> 803 Web Application- This is BIG text </big> <br> <br>
<i> 803 Web Application- This is Italic text </i> <br> <br>
<small> 803 Web Application- This is Small text </small> <br> <br>
1<sup>st </sup> <br> <br>
H<sub>2</sub>O <br> <br>
<tt> 803 Web Application- This is teletype text </tt> <br> <br>
<u> 803 Web Application- This is underlined text</u>
</body>
</html>
2.5 LISTS IN HTML
A list is a collection of related items that can be used to represent information in pointed form. In our daily routine,
we have to write many things such as list of items required for a festival and list of steps to make a dish. List feature of
HTML5 allows us to display this type of information on the web page in an organised manner. There are three types of
lists named ordered list, unordered list and definition list that can be created in HTML5 to display the items in the form
of list. Let us learn about these in detail.
156 Touchpad Web Applications-XI

