Guide Html: What is HTML Tags





HTML (HyperText Markup Language) is the most basic building block of the web. Defines the meaning and structure of Web content. Other technologies other than HTML are often used to describe the appearance / presentation (CSS) or functionality / behavior (JavaScript) of a web page.


"HyperText" (also known as hypertext, parent text, hypertext) refers to links that link web pages within a single web site or between web sites. Links are a fundamental feature of the web.By uploading content to the internet and connecting to pages created by others, you become an active participant on the World Wide Web. HTML uses "markup" to identify text, images, and other content for display in a Web browser.


HTML Tag 

The HTML tag tells your browser that the file contains information loaded with HTML code. In the file name .the html extension specifies that this file is an HTML document. HTML markup

Head Tag

Specifies the first part of an HTML document. The TITLE element must be present in it. The TITLE element determines the title of the document.

TITLE Tag

You can specify the title of the web page you created with the TITLE tag. This title will be displayed on the title bar, as seen above.

The title content must be compatible with the content and function of the page. The page should be short and descriptive.

META Tag

You can make a definition of your page with a Meta tag and define the page content with the appropriate keywords.

Some important meta tags and descriptions are as follows::

Keywords: the label that contains the words that make up the content of your site.

BODY tag

The second and longest part of your HTML document is the BODY part. The full contents of your document will be included here. All of the labels described in the next document will be in the BODY.


Comments