Server hosted by: Luka Utevski - lukapravivlogovi@gmail.com
HTML has six "levels" of headings, with <h1> being the highest section level and <h6> being the lowest.
<h1>This is a Main Heading</h1>
<h2>This is a Level 2 Heading</h2>
<h3>This is a Level 3 Heading</h3>
<h4>This is a Level 4 Heading</h4>
<h5>This is a Level 5 Heading</h5>
<h6>This is a Level 6 Heading</h6>
You should only use one <h1> per page. Using more than one will not result in an error, but using only one is seen as a best practice. It makes logical sense — <h1> is the most important heading, and tells you what the purpose of the overall page is.
Having a single top-level title is also arguably better for screenreader users, and SEO.
To create a paragraph, surround the words/sentences that make up the paragraph with an opening <p> tag and closing </p> tag.
By default, a browser will show each paragraph on a new line with some space between it and any subsequent paragraphs.
<p>A paragraph consists of one or more sentences that form
a self-contained unit of discourse. The start of a paragraph
is indicated by a new line.</p>
<p>Text is easier to understand when it is split up into units of text.
For example, a book may have chapters. Chapters can have subheadings.
Under each heading there will be one or more paragraphs.</p>
There are lots of occasions when we need to use lists. HTML provides us with 3 different types:
<ol>
<li>List Item 01</li>
<li>List Item 02</li>
<li>List Item 03</li>
<li>List Item 04</li>
<li>List Item 05</li>
</ol>
<ul>
<li>List Item 01</li>
<li>List Item 02</li>
<li>List Item 03</li>
<li>List Item 04</li>
<li>List Item 05</li>
</ul>
<dl>
<dt>Sashimi</dt>
<dd>Sliced raw fish that is served with condiments such as
shredded daikon radish or ginger root, wasabi and soy sauce</dd>
<dt>Scale</dt>
<dd>A device used to accurately measure
the weight of ingredients</dd>
</dl>
<ul>
<li>List Item 01</li>
<li>List Item 02</li>
<li>
<ul>
<li>Sublist Item 01</li>
<li>Sublist Item 02</li>
</ul>
</li>
</ul>
*You can use their CSS alternatives for styling the text
<br />
<hr />
<br /> and <hr /> are what is called a self-closing tags
In HTML5 writing self-closing tags without the forward slash "/" is valid
<br /> and <br> are the same thing for the browsers in HTML5
There are more self-closing tags that we'll learn later on
In order to make code easier to read, web developers often add extra spaces or start some elements on new lines.
When the browser comes across two or more spaces next to each other, it only displays one space.
Similarly if it comes across a line break, it treats that as a single space too. This is known as white space collapsing.
<p>The moon is drifting away from Earth.</p>
<p>The moon is drifting away from Earth.</p>
<p>The moon is drifting away from
Earth.</p>
The moon is drifting away from Earth.
The moon is drifting away from Earth.
The moon is drifting away from Earth.
<strong>Strong</strong>
<em>Emphasis</em>
There are two elements commonly used for quotations:
<blockquote>Blockquote</blockquote>
<q>Quote</q>
The <blockquote> tag has an optional attribute ‘cite’ that can be used for sources by entering the URL in the attribute.
<blockquote cite="http://en.wikipedia.org/wiki/Winnie-the-Pooh">
<p>Did you ever stop to think, and forget to start again?</p>
</blockquote>
<abbr>
If you use an abbreviation or an acronym, then the <abbr> element can be used.
A title attribute on the opening tag is used to specify the full term.
<p><abbr title="Professor">Prof</abbr> Stephen Hawking is
a theoretical physicist and cosmologist.</p>
<p><abbr title="National Aeronautics and Space Administration">NASA</abbr>
do some crazy stuff.</p>
<small>
The <small> element represents side-comments and small print, like copyright and legal text, independent of its styled presentation. By default, it renders text within it one font-size smaller
<p><small>All rights reserved. SEDC 2020</small></p>
These elements let you provide indications that specific parts of the text have been altered.
There are some characters that are used in and reserved by HTML code. (For example, the left and right angled brackets)
Therefore, if you want these characters to appear on your page you need to use what are termed "escape" characters (also known as escape codes or entity references)

Title: Working with multi-level nested HTML lists
Description: Create list having up to 5-level of nested child lists. Try different text formating tags on the list items.
Example 3-level list: https://i.stack.imgur.com/bjuI6.png