align attribute and dir attribute

1) align attribute will align the text left, right or center and dir tag will tell from which direction to start the text, rtl means right to left


<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>

<body>
<h1 align=" center "> Sachin Tendulkar</h1>
<p dir="rtl"> sachin is one of the greatest batsman of all time .</p>
</body>

</html>


2) Output



Comments