Web Development Ak 07

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 4

RIMT UNIVERSITY | MANDI GOBINDGARH

EXPERIMENT NO: 2

AIM: Basic structure of html with formatting tags.

Requirement: Windows 10, MS word, chrome, notepad

Source code:

<Doctype! HTML>

<head>

<tittle>website tags</tittle>

</head>

<body>

<h1>This is heading tag</h1>

<br>

<p> Name: Akash kumar</p>

<br>

<a href="https://www.godaddy.com">click here for godaddy</a>

<br>

<b>this is used to bold the line</b>

<br>

<i>This is used to italic the line</i>

<br>

<u>This is used to Underline the text</u>

<br>

1
RIMT UNIVERSITY | MANDI GOBINDGARH

<big>This is used to make text big</big>q

<br>

<small>This is used to make text small</small>

<br>

<em>This is used to highlight the text</em>

<br>

<strong>This is used to make text strong</strong>

<br>

<p>This is subscript tag: CO <sub>2</sub></p>

<br>

<p>This is superscript tag : (24)<sup>3</sup></p>

<hr>

</body>

</html>

2
RIMT UNIVERSITY | MANDI GOBINDGARH

OUTPUT:

3
RIMT UNIVERSITY | MANDI GOBINDGARH

You might also like