Advanced Java and Web Technologies for JNTUK
Blog providing beginner tutorials on different web technologies like HTML, CSS, Javascript, PHP, MYSQL, XML, Java Beans, Servlets, JSP and AJAX
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
AJWT » HTML » Basic HTML Tags
Suryateja Pericherla Categories: HTML. No Comments on Basic HTML Tags
0
(0)

Every HTML document should consist of a set of four tags which are known as the basic HTML tags or fundamental HTML tags. The basic tags along with their descriptions are given below:

<html> – The root tag for every HTML document

<head> – Specifies the head section in a web document which usually contains meta data

<body> – Specifies the body section which contains the actual content of a web document

<title> – Specifies the title of the web document to be displayed on the browser’s title bar

Example on Basic HTML Tags

In general, every web document contains a head section and a body section which will be enclosed in between <html> tags. Certain tags in HTML can be nested inside other tags. General structure of a web document is shown below:

<html>
	  <head>
    		<title>Title of the web page</title>
	  </head>
  	<body>
    		Web page content here...
  	</body>
</html>

Although indentation is not necessary, it makes your HTML code more readable.

How useful was this post?


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


Click on a star to rate it!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Note: Do you have a question on this article or have a suggestion to make this article better? You can ask or suggest us by filling in the below form. After commenting, your comment will be held for moderation and will be published in 24-48 hrs.

Leave a Reply

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

Facebook
Twitter
Pinterest
Youtube
Instagram