Skip to main content

Posts

Showing posts with the label Essential Parts of an HTML Document

HTML Tutorial 2: Basic Parts of HTML Document

In my previous post, I started writing about HTML. As it was the first tutorial of HTML, I just showed you the example of an HTML document without giving detailed information of that document.  In this post, I'm gonna discuss about the essential parts of an HTML document. Essential parts mean those parts which are very common for each and every HTML document. I mean the HTML tag, the Header, the Title and the Body.  Before you start, please have a look at the HTML Tutorial 1 if you haven't go through this already.  After reading the tutorial 1 look at the image below: Here you can see all the four parts that I used in the example document . Let's what are they actually: The HTML Tag: <html> Every HTML or XHTML document start with <html> tag and ends with </html> tag. Even if you right click on this page and hit on view source/ view page source option you will see the html of this post. At the top you...