Computer Science, asked by RPisOP285, 10 months ago

Create a HTML document containing three paragraphs with different alignments.

Answers

Answered by VISHALKUMARV22
14

Answer:

<!DOCTYPE html>

<html>

<head>

<title>Mark me as BRAINLIEST</title>

</head>

<body>

<p align="center">This is a Paragraph with different alignment.</p>

<p align="right">This is a Paragraph with different alignment.</p>

<p align="justify">This is a Paragraph with different alignment.</p>

</body>

Similar questions