- index.html
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Line breaks and separators</title>
</head>
<body>
<h1>Ring-verse</h1>
<p>
Three Rings for the Elven-kings under the sky,
Seven for the Dwarf-lords in their halls of stone,
Nine for Mortal Men doomed to die,
One for the Dark Lord on his dark throne
In the Land of Mordor where the Shadows lie.
</p>
<p>
One Ring to rule them all, One Ring to find them,
One Ring to bring them all, and in the darkness bind them
In the Land of Mordor where the Shadows lie.
</p>
</body>
</html>
You have moved to another page
GoalsCompleted
0
- Use the
<br>
tag to add four line breaks to the first paragraph, - two line breaks to the second paragraph.
- Add separator between paragraphs using the
<hr>
tag.