You are on page 1of 3

EXPERIMENT -4

Objective - Formatting text: HTML Logical Style Tag

Program code :
<!DOCTYPE html>

<html>

<body>

<abbr title="Hypertext Markup Language">HTML</abbr>

<hr>

<code>print("Name is Vanisha Verma")</code>


<hr>

<samp>System.out.println("Student of B.Tech CSE 3rd Year")</samp>

<hr>

<p>Press the <kbd>ENTER</kbd> key.</p>

<hr>

<p>Do you like <em>talking with me</em>?</p>

<hr>

<p>My date of birth is <strong>December 07,2003</strong>.</p>

<hr>

<p><dfn>Dream</dfn> is to become a well-known Software Developer.</p>

<hr>

<p>That's why I use,C++ which is a well-known language for <q>coding and problem
solving. </q></p>

<hr>

</blockquote>

<hr>

<p>Favorite Subject in academic <ins>NONE</ins>. </p>

<hr>

<p>My hobby is to listen music & dance not to <del>Sing</del>. </p>

<hr>

<p><var>H</var> in HTML stands for "hyper," indicating that we can

navigate anywhere on the internet by using hyperlinks.

</p>

<hr>

<bdo dir="rtl">hackathon</bdo>
</body>

</html>

Output:

You might also like