Saturday, September 24, 2016

HTML- Using Different Tags

<!doctype html>
<html>
<head>
<title>My First HTML Document</title>
</head>
<body bgcolor="orange">
<center>
<h1>First Document</h1>
<img src="E://Siddhant/Images/All Star.jpg" width="200" height="100" alternate="All Star"/>
</center>
<marquee behaviour="alternate"><p>This is my <em>first</em> html document</p></marquee>
<center>
<p>I am <strong>learning</strong> html programming</p>
<p><b>Using pre tag-</b></p>
<pre>
            *
           ***
          *****
           ***
            *
</pre>
</center>
<p><b>Using address tag-</b></p>
<address>
House No 22/7<br/>
Madar Darwaza<br/>
Auraiya</br>
PIN 206122<br/>
Uttar Pradesh
</address>
<p>2<sup>2</sup>=4</p>
<p><b><i>Brought to you by-</i></b></p><br/>
Cremica<sub>2</sub>
<p><abbr title="Lovely Professional University">LPU</abbr></p>
<p><acronym title="Aam Aadmi Party">AAP</acronym></p>
</body>
</html>

No comments:

Post a Comment