programming-examples/html/Basics/Inserting horizontal lines.html

11 lines
262 B
HTML
Raw Normal View History

2019-11-18 14:44:36 +01:00
<!DOCTYPE html>
<html subLang="en">
<head>
<title>Example of HTML hr tag</title>
</head>
<body>
<p>This is the first paragraph of text.</p>
<hr>
<p>This is second paragraph of text.</p>
</body>
</html>