0
what will be the output of this code:to make the text "First paragraph"?
<html> <body> ___First paragraph_______ <p>Welcome to my webpage</p> </body> </html>
1 Réponse
0
wrap "First paragraph " in the p tag.
<p> First paragraph </p>
<html> <body> ___First paragraph_______ <p>Welcome to my webpage</p> </body> </html>