Answer to Question #100179 in HTML/JavaScript Web Application for kamara

Question #100179
Create a web page that has two paragraphs. One of the paragraphs should be aligned to the center and have red text. The other paragraph should be aligned to the right and be in italics.
1
Expert's answer
2019-12-11T10:57:27-0500
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
		.first {
			text-align: center;
			color: red;
		}

		.second {
			text-align: right;
			font-style: italic;
		}
	</style>
</head>
<body>
	<p class="first">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quisquam, accusantium.</p>
	<p class="second">Lorem ipsum dolor sit amet, consectetur adipisicing elit.</p>
</body>
</html>

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS