Skeletal Tags
HTML skeletal tags are used to structure the content of a web page. They include the `<html>`, `<head>`, `<title>`, and `<body>` tags. Learn how to use these tags to create a well-structured HTML document.
HTML Tag: "Root of an HTML Page"
The <html> tag is the root element of an HTML page. It contains all the other HTML elements on the page. The <html> tag is also known as the "root of an HTML document."
Syntax:
<html>
<!-- Content -->
</html>Head Tag: "Header Part of an HTML Page"
The <head> tag is used to define the header part of an HTML document. It contains meta-information about the HTML document, such as the title, links to external stylesheets, and scripts. It also help search engines to understand the content of the page.
Syntax:
<head>
<!-- Meta tags, title, links, and scripts -->
</head>Title Tag: "Title of an HTML Page"
The <title> tag is used to define the title of an HTML document. The title is displayed in the browser's title bar or tab. It is also used by search engines to display the title of the page in search results.
Syntax:
<title><!-- Title of the Page --></title>Body Tag: "Body of an HTML Page"
The <body> tag is used to define the body of an HTML document. It contains all the content that is displayed on the web page, such as text, images, links, and other elements.
Syntax:
<body>
<!-- Content of the Page -->
</body>Example: HTML Skeletal Tags
Here is an example of how the HTML skeletal tags are used to structure the content of an HTML page:
<!doctype html>
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1>Welcome to My First Web Page</h1>
<p>This is a paragraph of text.</p>
</body>
</html>In this example, the <html>, <head>, <title>, and <body> tags are used to structure the content of the web page. The <title> tag defines the title of the page, which is displayed in the browser's title bar. The <body> tag contains the content of the page, such as headings and paragraphs.
Conclusion
HTML skeletal tags are used to structure the content of a web page. They include the <html>, <head>, <title>, and <body> tags. By using these tags, you can create a well-structured HTML document that is easy to read and understand.
How is this guide?
Sign in to share your feedback
Help us improve by sharing your thoughts on this guide.
Last updated on
Pre Tag
The `<pre>` tag in HTML is used to define preformatted text, which preserves the original formatting of the text. Learn how to use the `<pre>` tag to display code snippets and other preformatted text in HTML.
HTML Block Elements
Block elements in HTML are used to create content that appears on a new line or in a separate block. Learn how to use block elements to structure your HTML pages and create visually appealing layouts.