Thursday, 2 February 2017

HTML BASICS

 

 

 

 

 

 

 

 

 

HTML for beginners!

Introducing with a very basic and primary structure of HTML.

<!DOCTYPE html> 
<!---Above line is very first and important line for starting any HTML page.--->

<head>
      <title></title>
</head>
<body>
       <h1></h1>
        <p></p>
</body>
</html>


Now, few key points to remember always:-
  • Every tag is surrounded by brackets.
  • Every tag must be closed by a sign known as back slash "/ ".
  • All the content or data or any information which we want to show or display  on our webpage must be written inside the body tag. 

Related Posts:

  • HTML LESSON - 3   THIRD LESSON OF HTML <!DOCTYPE html> <html> <head> <title>Third Lesson of HTML</title> </head> &l… Read More
  • HTML LESSON - 2 SECOND LESSON OF HTML <!DOCTYPE html> <html> <head> <title>Second Lesson of HTML</title> </head> <body> &l… Read More
  • HTML Lesson - 6 SIXTH LESSON OF HTML   <!DOCTYPE html> <html> <head> <title>Sixth Lesson of HTML</title> </head> <bod… Read More
  • HTML LESSON -1 FIRST LESSON OF HTML  Here, we are explaining how to write a basic HTML code with its output. <!doctype html><html><head>… Read More
  • HTML LESSON - 4   FOURTH  LESSON OF HTML <!DOCTYPE html><html> <head> <title>Fourth Lesson of HTML</title> <head>&l… Read More

0 comments:

Post a Comment