In this post you will get basic of Introduction. so it’s your first step to go ahead in web development field. HTML is the standard markup language for creating Web pages.

What is HTML?

full forms of HTML is Hyper Text Markup Language

It describes the structure of a Web page

In webpage consists of a series of elements

elements of html tell the browser how to display the content

HTML elements are represented by tags

and HTML tags label pieces of content such as “heading”, “paragraph”, “table”, and so on

Browsers do not display the HTML tags, but use them to render the content of the page

A Simple HTML Document

<!DOCTYPE html>
<html>
<head>
  <title>Page Title</title>
</head>
<body>
  <h1>My Heading</h1>
  <h2>Second Heading</h2>
  <h3>Third heading</h3>
  <p>paragraph</p>
  <ul>
  <li>list item</li>
  <li>list item</li>
  </ul>
  <div>block of code</div>
</body>
</html>
  	

In the head tag you need to write information about document. that will pass to browser and search engines so it can know about documents. this tags will not appear to user in browser view.

and within body tag you need to write your content of page that will appear in browser window user can view and in this you can make any combination of different types of tags to make your web page more attractive.

There is many validation and rules are available, we need to follow while developing any web page.

Similar Posts

Leave a Reply

Your email address will not be published. Required fields are marked *