Page 169 - Webapplication11_C11_Flipbook
P. 169
<cite> Wikipedia </cite> is my favourite website. <br>
<code> Sample code: print("Hi there!") </code>
<blockquote cite="https://www.cbse.nic.in/">
The CBSE envisions a strong, lively, and comprehensive educational
system that fosters excellence in all areas of human endeavour. The
Board is dedicated to providing high-quality education to its students
in order to foster intellectual, social, and cultural vitality.
</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>
Website Building Using HTML and CSS 167

