23.
Which of the following add a paragraph with the text "Lorem Ipsum" between the <body> and </body>?
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
</body>
</html>
<h1>Lorem Ipsum</h1>
<body>Lorem Ipsum</body>
<p>Lorem Ipsum</p>
<paragraph >Lorem Ipsum</paragraph >
Correct: C
The correct HTML tag to add a paragraph is the <p> tag. This tag represents a paragraph of text. The text "Lorem Ipsum" should be placed between the opening and closing <p> tags. Although other options are HTML tags, they are not suitable for adding paragraphs of text.