0% found this document useful (0 votes)
4 views1 page

HTML Webpage Example

The document provides an example of HTML code for a simple webpage titled 'Example1.html'. It includes various HTML tags such as STRIKE, SUPERSCRIPT, and SUBSCRIPT, demonstrating their usage with examples. The webpage features a pink background and text styled in different colors.

Uploaded by

MEETANSH
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views1 page

HTML Webpage Example

The document provides an example of HTML code for a simple webpage titled 'Example1.html'. It includes various HTML tags such as STRIKE, SUPERSCRIPT, and SUBSCRIPT, demonstrating their usage with examples. The webpage features a pink background and text styled in different colors.

Uploaded by

MEETANSH
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

HTML Code for Webpage Example

<!DOCTYPE html>
<html>
<head>
<title>Example1.html</title>
</head>
<body style="background-color: pink;">

<h1 align="center"><b>.......FIRST WEBPAGE.......</b></h1>

<p style="color: red;">


<b>HTML IS NOT A PROGRAMMING LANGUAGE, IT IS <u>MARKUP LANGUAGE.</u></b>
</p>

<p>
<b>STRIKE Tag</b> - It puts a line right through the centre of the text,
crossing it out<br>
For Example :- <strike>Cancel</strike>
</p>

<p>
<b><span style="color: green;">SUPERSCRIPT Tag</span></b> - The matter within
this pair of tags will appear as superscript.<br>
For Example :- A<sup>2</sup> + B<sup>2</sup>
</p>

<p>
<b><span style="color: blue;">SUBSCRIPT Tag</span></b> - The matter within this
pair of tags will appear as subscript.<br>
For Example :- H<sub>2</sub>O
</p>

</body>
</html>

You might also like