0
How do I write two paragraphs using html?
Help
2 Answers
+ 4
It's very simple.
<p> Paragraph 1</p>
<p> Paragraph 2</p>
+ 2
Write your code in this way:
<html>
<head>
<title> write your title </title>
</head>
<body>
<p> write here </p>
<p> write here </p>
</body>
</html>