Basics of HTML

 HTML is the standard markup language for creating Web pages.

Basics of HTML

1) What is HTML stands For ?

. HTML stands for Hyper Text Markup language 
. HTML is the markup language for creating web pages
. HTML tells the browser how to display the contents

Let's Look How to create a simple HTML document

First open a Text editor or Notepad in your computer and create a file Basic.html and after that type this

<html>
<head>

<title>Page Title</title>
</head>
<body>
<h1>First Heading</h1>
<p>First paragraph.</p>
</body>
</html>
After that double click the file and open in your web browser our first HTML webpage is created

Let's Look the explanation of the html tags we used here 
  • The <html> tag represent the root element of an HTML page
  • The <head> tag represent the meta information about the HTML page
  • The <title> tag represent the title for the HTML page
  • The <body> tag represent the the document's body such as headings, paragraphs, images etc.
  • The <h1> tag represent the  large heading
  • The <p>tag represent the  paragraph

Post a Comment

If you have any doubts. Let me know

Previous Post Next Post