help me write out a html code that can display five line sentence
Answers
Answered by
0
Answer:
hypertext mark-up language is a full form of HTML
Answered by
0
Answer:
<html>
<head>
<title>Five Lines Page</title>
</head>
<body>
<! -- MAIN -->
<p>This is first line</p>
<p>This is second line</p>
<p>This is third line</p>
<p>This is fourth line</p>
<p>This is fifth line</p>
<! -- END MAIN -->
</body>
</html>
Explanation:
This code will work for you if you want to print 5 different line.
If you want to print 5 line together then do this:
.....
<! -- MAIN -->
<p>All the text that you want to add </p>
<! -- END MAIN -->
.....
Similar questions