Actually, there is nothing to learn, the most important thing is get used to it.
Open your notepad and copy paste the code below this.
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<a href="www.vektanova.com">This is link to Vektanova.com</a>
Then "Save as" the file as learning.html
Close the notepad, and open the file that you just saved (learning.html).
It will be opened by your Internet Browser and you can see that the plain text you just pasted changed to a web page.
If you want to edit it again, just rename it from learning.html to learning.txt and open it. It will be opened by Notepad and you can edit it again freely.
As we can see that every tag always begin with <tag> and ended by </tag>
The tag is must be closed, or an error will occur or the web page will be disorganized.
The <h1> and </h2> means heading, usually is used for a title,
The <p> and </p> means paragraph,
The <a> and </a> means link.
Previous 3/12 Next