Be Familiar with HTML: A Tutorial

BE FAMILIAR WITH HTML: A Tutorial


What is HTML?

          HTML means HyperText Markup Language. A markup language is a set of markup tags. HTML documents are described by HTML tags and each HTML tag describes different document content (http://www.w3schools.com/html/html_intro.asp). Below is an example of an HTML document.



             In making an HTML document, you need to open a notepad where you will encode the texts you want to appear in your browser. As you can see above, HTML documents use tags that usually come in pairs. The first tag in a pair is the start tag, the second tag is the end tag. The end tag is written like the start tag but with a forward slash insert before the tag name. Example <p> and </p>. Below is how the HTML document looks like in upon opening with the browser.


             Many are the things that you can learn more about HTML. You can visit the website www.w3schools.com for a more comprehensive tutorial. Thank you.

Comments