Friday, 3 February 2017

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>
<title>First Lesson of HTML</title>
<!--This is the title of webpage which appears on the top of the page-->
</head>
<body>
    <h1>Learning HTML is quite interesting</h1>
    <!--This is the heading of the webpage. Here, h define the heading and 1 define the size-->
    <p>HTML is a hyper text markup language, which is helpful in designing a webpage with the help of different tags.
       It is vey easy computer language.

    </p>

 
  
<!--This is the paragraph of the webpage-->
</body>
</html>



OUTPUT OF THE ABOVE CODE



















Now, key points to remember always:
  • In HTML, heading tag can be used from <h1> to <h6>, where <h1> is the largest heading and <h6> is the smallest heading.

Related Posts:

  • HTML LESSON - 4   FOURTH  LESSON OF HTML <!DOCTYPE html><html> <head> <title>Fourth Lesson of HTML</title> <head>&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 - 3   THIRD LESSON OF HTML <!DOCTYPE html> <html> <head> <title>Third Lesson of HTML</title> </head> &l… Read More
  • HTML Lesson - 5 Output of the code given   FIFTH LESSON OF HTML Now, Few Key point to remember always: The td tags contain data like images, t… Read More
  • HTML Lesson - 7 Seventh Lesson of HTML .festive h4{      color: red;      font-family:calibri; } .festive p{   … Read More

0 comments:

Post a Comment