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

HTML Text Styling and Alignment Guide

The document contains multiple HTML examples demonstrating various text styles, colors, and alignments. It includes examples of bold, italic, and emphasized text, as well as different font colors and sizes. Additionally, it showcases background color usage and header elements with different levels of emphasis.

Uploaded by

amit.ray455
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)
3 views3 pages

HTML Text Styling and Alignment Guide

The document contains multiple HTML examples demonstrating various text styles, colors, and alignments. It includes examples of bold, italic, and emphasized text, as well as different font colors and sizes. Additionally, it showcases background color usage and header elements with different levels of emphasis.

Uploaded by

amit.ray455
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

[Link] Document [FontStyle.

html]

<! DOCTYPE html>


<html>
<head>
<title>Font Style Demo</title>
</head>
<body>
<b> This is a bold text </b> <br/>
<i> This is in italics</i> <br/>
<strong> This is strongly emphasized text</strong> <br/>
<strike> This is striked text </strike>
<center> This will appear at the center</center> <br/>
</body>
</html>

2. HTML Document[[Link]]
<! DOCTYPE html>
<html>
<head>
<title>coloring the text</title>
</head>
<body>
<basefont face="arial" size="5" color="blue">
Great people are simple and <br>
<font face="Times new roman" color="red" size="8">
Simple people are great!!!<br>
<font face="GoudyHandtooled BT" color="green" size="14">
Great people rule the world.
</body>
</html>
3. HTML Document[[Link]]
<! DOCTYPE html>
<html>
<head>
<title>Coloring the background</title>
</head>
<body bgcolor="#FFFF00">
<h3>This is document has colored background</h3>
</body>
</html>
4. HTML Document [[Link]]
<! DOCTYPE html>
<html>
<head>
</head>
<body>
<h1> This is a first header </h1>
<h2> This is a second header </h2>
<h3> This is a third header </h3>
<h4> This is a forth header </h4>
<h5> This is a fifth header </h5>
<h6> This is a sixth header </h6>
</body>
</html>
[Link] Document[[Link]]
<! DOCTYPE html >
<html>
<head>
<title>Font Style Demo</title>
</head>
<body>
<div align="center">This line is aligned at center</div>
<div align="left">This line is aligned at left</div>
<div align="right">This line is aligned at right</div>
</body>
</html>

You might also like