InterviewSolution
Saved Bookmarks
| 1. |
Demonstrate with an example to display the text in two paragraphs |
|
Answer» <P>Example <!DOCTYPE html> <html> <HEAD> <meta charset ="UTF-8"> <title>BLOCK Level Elements</title> </head> <BODY> <p>I am a paragraph</p>I am directly after the paragraph <body> </html>Output |
|