Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

complete the code to break the paragraph into 2 lines <p>stay hungry< >…

Question

complete the code to break the paragraph into 2 lines <p>stay hungry< > stay foolish</p>

Explanation:

Step1: Insert line - break tag

In HTML, the <br> tag is used for line - breaks. Insert <br> between the two phrases within the <p> tag.
<p>Stay Hungry<br>Stay Foolish</p>

Answer:

<p>Stay Hungry<br>Stay Foolish</p>