Introduction of HTML tutorial for beginners


In this article we will learn what is HTML and basic structure of raw HTML.
HTML is Hyper Text Markup Language is used to create web page.
Introduction of HTML tutorial for beginners
Introduction of HTML tutorial for beginners

Structure of Raw HTML

==================================================================
Now we are going to explain the structure of raw HTML coding.

<!DOCTYPE html>
<html>
    <head>
     (title and css defines here)
     </head>
     <body>
      (content area)  
     </body>
</html


From the above raw coding , we should write <!DOCTYPE html> at the beginning which tells the browser it is a html program.

All the element ,attribute ,metadata and content should be write within the <html> tag which start with <html tag and end with </html>

Inside the <html> tag two more tags are there one is <head> tag and other is <body> tag.

Title of the webpage and style sheet should be define inside the <head>  tag and all content should be define inside the body tag.


That’s all. If this article is helpful please share it!!!!







Please Donate To Bitcoin Address: [[address]]
Donation of [[value]] BTC Received. Thank You.
[[error]]
SHARE

Admin

  • Image
  • Image
  • Image
  • Image
  • Image
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment