We can align the text in at left,right or at the center using a <div>tag.Here is a HTML program which shows the text aligned left,right and center.
Demonstrate the alignment of text using the HTML tag
Sol:
XHTML
Document[TextAlign.html]
<html xmlns="http://www.learnhtmeasyl.blogspot.com/2017/xhtml">
<head>
<title>Font Style
Demo</title>
</head>
<body>
<div align="center">This line is aligned at the center</div>>
<div align="left">This line is aligned at left</div>
<div align="right">This line is aligned at right</div>
</body>
</html>
No comments:
Post a Comment