Explain different types of alignments. Explain with HTML tag. answer fast
Answers
Answered by
3
Answer:
There are four types of primary text alignment include left aligned, right aligned, centered, and justified.
Explanation:
<html>
<body>
<p align="right">This is some text in a paragraph.</p>
<p align="left">This is some text in a paragraph.</p>
<p align="center">This is some text in a paragraph.</p>
<p align="justify">This is some text in a paragraph.</p>
</body>
</html>
Similar questions