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

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

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

Answer

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>