Respuesta :
Answer:
<html>
<body>
<p style="text-align:center;color:red;">This is a paragraph.</p>
<p><i> "This text is italic</i></p>
</body>
</html>
Explanation:
I got a 75%. Hope this helps.
HTML codes are placed in segments called tags.
Tags are divided into two
- The opening tag
- The closing tag
Take for instance, the opening and closing tags of the paragraph tag are <p> and </p>, respectively.
Having explained what tags are, the required HTML code is as follows:
<html>
<body>
<p align="center"><font color="black"> This is a paragraph 1</font></p>
<p align="right"><i> This is a paragraph 2 </i></p>
</body>
</html>
The paragraphs are aligned using center and right alignments, while the text in the first paragraph is colored using the color tag
Read more about HTML at:
https://brainly.com/question/25055825