Aline Attribute in Html
Center : Aligns Word in center of web
page Example : align = ”center ” .
Left: Aligns Word in Left of web page Example
: align = ”Left ” .
Right : Aligns Word in right of web page Example
: align= ”Right” .
Justify : Justifies whole text of web page Example
: align = ”justify” .
Use of
Aline tag
· With <li> List tag
Example : <li align=”right”>
· With <hr> horizontal Rule
Tag Example : <hr align=”left”>
· With <p> paragraph Tag Example
: <p align=”Right”>
Code :
<!DOCTYPE html>
<html>
<head>
<title>coding wala</title>
</head>
<body>
<h1 align="center">Coding Wala</h1>
<p align="right">this is website developmet tutorial .</p>
</body>
</html>
Comments
Post a Comment