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.
Suryateja Pericherla, at present is a Research Scholar (full-time Ph.D.) in the Dept. of Computer Science & Systems Engineering at Andhra University, Visakhapatnam. Previously worked as an Associate Professor in the Dept. of CSE at Vishnu Institute of Technology, India.
He has 11+ years of teaching experience and is an individual researcher whose research interests are Cloud Computing, Internet of Things, Computer Security, Network Security and Blockchain.
He is a member of professional societies like IEEE, ACM, CSI and ISCA. He published several research papers which are indexed by SCIE, WoS, Scopus, Springer and others.
Leave a Reply