In HTML, we will see a lot of tags, all of them must be started with <tag> and ended with </tag> , but there is only exception for <br /> which has opening and ending tag of itself, <br /> means new line, it's different with <p> which mean new paragraph.
Now, rename again learning.html to be learning.txt so we can edit it from notepad. Make new line by adding <br /> tag before the element.
So, as the example, the page script will be like this:
<html>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<br>This is the new line!
<a href="www.vektanova.com">This is link to Vektanova.com</a>
</body>
</html>
Save and close it, rename it back from learning.txt to learning.html and then open it.
The file will be opened from your Internet Browser and see the result.
Easy, isn't it?
In the next chapter, we'll learn how do we connect from a page to the other pages.