FanicaSite/Blog/Test.html

34 lines
627 B
HTML
Raw Normal View History

2022-02-15 14:41:26 +01:00
<html>
<head>
</head>
<body>
<div>
<h1>I am a title</h1>
<p>I am some paragraph.
And this is not a new line <br>
because to have a manual line break in html, you need to insert <br>
And this is a forced new line!
</p>
</div>
</body>
</html>
<html>
<head>
</head>
<body>
<div>
<h1>I am a title</h1>
<p>I am some paragraph.
And this is not a new line,
because to have a manual line break in html, you need to insert <br>
And this is a forced new line!
<ol type="a">
<li>Item 1</li>
<li>Item 2</li>
</ol>
</p>
</div>
</body>
</html>