Friday, 10 October 2014

How to get started to learn HTML

as discussed earlier when we copy and past it in notepad on the
desktop and when we open it with any of the browser it will look
like this


<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

hope you got it

now lets learn basics of html, before we learn anything
we have to learn basics of that one
now the basics of HTML programming is:


All HTML documents must start with a type declaration: <!DOCTYPE html>.

The HTML document itself begins with <html> and ends with  </html>.

The visible part of the HTML document is between <body> and </body>.

we can divide a html document to any parts but mostly it includes

<html>(html opening and closing)
<head>(head tag in between html)
</head><head tag closing>
<body>(visible part)
</body>(body closing tag)
</html>(html closing)
hope you got it

now the basics of HTML programming language includes
1.Headings(heading will have from <h1> to <h6>tags)
2.Paragraph(paragraph have starts with tag<p></p>)
3.links

ok will go in depth in the next chapter
thanks for watchin my video
please leave a comment and subscribe to my channel
watch my youtube video at Getting started to html

No comments:

Post a Comment