0% found this document useful (0 votes)
3 views2 pages

HTML Tags

The document lists various HTML tags used for text formatting, including bold, italic, and emphasized text. It also provides examples of how to set background colors, text colors, and border colors in HTML elements. Additionally, it includes basic HTML structure and examples of links and images.

Uploaded by

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

HTML Tags

The document lists various HTML tags used for text formatting, including bold, italic, and emphasized text. It also provides examples of how to set background colors, text colors, and border colors in HTML elements. Additionally, it includes basic HTML structure and examples of links and images.

Uploaded by

manva.farhat
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

All the html tags;

for our practical


formatting

 <b> - Bold text


 <strong> - Important text
 <i> - Italic text
 <em> - Emphasized text
 <mark> - Marked text
 <small> - Smaller text
 <del> - Deleted text
 <ins> - Inserted text
 <sub> - Subscript text
 <sup> - Superscript text

Colors – Background color for text

<h1 style="background-color:DodgerBlue;">Hello World</h1>


<p style="background-color:Tomato;">Lorem ipsum...</p>

Text color

<h1 style="color:Tomato;">Hello World</h1>


<p style="color:DodgerBlue;">Lorem ipsum...</p>
<p style="color:MediumSeaGreen;">Ut wisi enim...</p>

Border color

<h1 style="border:2px solid Tomato;">Hello World</h1>


<h1 style="border:2px solid DodgerBlue;">Hello World</h1>
<h1 style="border:2px solid Violet;">Hello World</h1>

Basic Code

<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>


<p>My first paragraph.</p>

</body>
</html>

Background colour for the entire webpage


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

Links

<a href="url">link text</a>


Images

<img src="pic_trulli.jpg" alt="Italian Trulli">

You might also like