what is html format
♦ HTML documents are structured into two parts; one is the HEAD, and another is the BODY.
♦ Both of these are contained within the HTML tags.
♦ The HEAD contains TITLE.
♦ The BODY contains all the content.
♦ Elements allowed inside the HEAD, such as TITLE, are not allowed inside the BODY.
The Format is:
<HTML>
<HEAD>
.............
.............
</HEAD>
<BODY>
.............
.............
</BODY>
</HTML>
To create a HTML document the essential tags that are required are:
<HTML>.............</HTML>
<HEAD>.............</HEAD>
<BODY>.............</BODY>
HTML Tag
<HTML>
The <HTML> tag encloses all other HTML tags. You can create an HTML document without using the <HTML> tags, and your browser can still read and display it. But it is good practice to start with <HTML> and stop with </HTML> tags.
The format is
<HTML>
</HTML>
HEAD Tag
<HEAD>
<HEAD> tag comes after the HTML tag.
It contains TITLE tag which is used to provide a title to a page that displays at the top of the browsers.
The Format is
<HEAD>
<TITLE>
Desired title write here
</TITLE>
</HEAD>
Write a meaningful title for your web page. The title should reflect the contents of the web page. It is like a topic sentence. A good title text contains up to 20 words.
BODY Tag
<BODY>
The BODY tag contains all the content (text, tables, pictures etc.) of the document. The BODY tag encapsulates all the viewable content of a webpage. BODY tag can appear only once for each document.
The Format is
<BODY>
All the viewable content will be here.
</BODY>
HTML tags are not case-sensitive i.e. there is no difference in small and capital letters in tags.
0 মন্তব্য(গুলি):
একটি মন্তব্য পোস্ট করুন
Comment below if you have any questions