You are on page 1of 5

Practical No : 1

Name : Lohade Om Manoj


Roll No : 78

Title : Design a Webpage Demonstrate the use of different HTML tags

Program :

<!DOCTYPE html>
<html lang="en">

<head>

<title> Basic html tags </title>

</head>

<body style = "background-color: bisque;">

<h1>My First Head H1</h1>


<h2>This is h2</h2>
<h3>This is h3</h3>
<h4>This is h4</h4>
<h5>This is h5</h5>
<h6>This is h6</h6>
<h1 style="font-size:60px;">Big Heading </h1>
<p>This is my First Paragraph </p>
<b>This is Bolt </b><br>
<strong>This is Important </strong><br>
<i>This is Italic </i><br>
<u>This is underline </u><br>
<p>Subscript H<sub>2</sub>O </p>
<p>Superscript a<sup>2</sup>+b<sup>2</sup></p>
<em>Epahasis</em>
<pre>This is preformated text space
Preserves both spaces and line break </pre>
<mark>This is Mark(Highlighted Text)</mark><br>
<small>Small Text</small><br>
<p>Style</p>
<p style="color: blue;">This is a blue paragraph</p>

<p title="This is tooltip">Tooltip</p>


<p>Difforent Fonts</p>
<p style = "font-family: 'Times New Roman', Times, serif;">This is Times
New Roman</p>
<p style = "font-family: Impact, Haettenschweiler, 'Arial Narrow Bold',
sans-serif;">This is Arial</p>
<p style = "font-family: Verdana, Geneva, Tahoma, sans-serif;">This is
Verdanda</p>

<a href="https://en.wikipedia.org/wiki/HTML">This is a link</a>


<br>
<br>
<br>
<img src = "https://tse3.mm.bing.net/th?
id=OIP.cmYLYbCO2dui_spTJldw7gHaFP&pid=Api&P=0&h=180" alt="html">

<P>Ordered list , Unordered List</P>

<ol>
<li>CHINESE</li>
<ul>
<li>Veg Spring Roll </li>
<li>Veg Chow Mein</li>
<li>Garlic Chow Mein</li>
<li>Hakka Noodles</li>
</ul>
<li>Pizza</li>
<ul>
<li>Chilli Potato pizza </li>
<li>Paneer pizza </li>
<li>Tomato Pizza</li>
<li>Onion Pizza</li>
</ul>
<li>Coffee</li>
<ul>
<li>Cold coffee</li>
<li>Black Coffee</li>
<li>Dalgona Coffee</li>
<li>Cafee Late</li>
</ul>
</ol>
<br>
<p>Defination List</p>
<dl>
<dt>Tea
<dd>mixture of tea & milk</dd>
</dt>
<dt>Coffee
<dd>mixture of coffee & milk with little sugar </dd>
</dt>
<dt>Onion Pizza
<dd>Onion Slices Spread on Base Sprinkled with Cheese</dd>
</dt>
<dt>Hakka Noodles
<dd>It is a Chineese dish </dd>
</dt>
<dt>Burger
<dd>It has a bun inserted with Potato patti and slices of onion ,
tomata with sauces</dd>
</dt>
</dl>
<table>
<tr>
<th>Person 1</th>
<th>Person 2</th>
<th>Person 3</th>
</tr>
<tr>
<td>Emil</td>
<td>Tobias</td>
<td>Linus</td>
</tr>
<tr>
<td>16</td>
<td>14</td>
<td>10</td>
</tr>
</table>
</body>
</html>
+
Output :

You might also like