0% found this document useful (0 votes)
55 views10 pages

Network Topology

This presentation summarizes key HTML tags including the <title>, <head>, <meta>, and <!DOCTYPE> tags. The <title> tag defines the title of the document shown in the browser tab. The <head> tag is a container for metadata and is placed between the <html> and <body> tags. The <meta> tag contains additional information about the document like description, keywords, and author. All HTML documents must start with a <!DOCTYPE> declaration to inform the browser of the document type.

Uploaded by

SHUBHAM PAL
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
55 views10 pages

Network Topology

This presentation summarizes key HTML tags including the <title>, <head>, <meta>, and <!DOCTYPE> tags. The <title> tag defines the title of the document shown in the browser tab. The <head> tag is a container for metadata and is placed between the <html> and <body> tags. The <meta> tag contains additional information about the document like description, keywords, and author. All HTML documents must start with a <!DOCTYPE> declaration to inform the browser of the document type.

Uploaded by

SHUBHAM PAL
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 10

PRESENTED TO: PRESENTED BY:

Mr. Dhananjay Sir Shubham pal


Assistant Professor Id.No.-14210070
Department of Computer MCA 3rd Sem.
Application ,UIM , Naini
CONTENTS
Title Tag
Head Tag
Meta Tag
Doctype in HTML
TITLE
The <title> tagTAG
defines the title of the document. The title must
be text-only, and it is shown in the browser's title bar or in the
page's tab.
The <title> element:
defines a title in the browser toolbar
provides a title for the page when it is added to favorites
displays a title for the page in search-engine results

Value Description
Text A tooltip text for an element
EXAMPLE
<!DOCTYPE html>
<html>
<head>

 <title>HTML Element</title>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
HEAD TAG
The <head> element is a container for metadata (data
about data) and is placed between the <html> tag and
the <body> tag.
HTML metadata is data about the HTML document.
Metadata is not displayed.
Metadata typically define the document title, character
set, styles, scripts, and other meta information.
ITS ATTRIBUTES
META TAG
The <meta> tag contains additional information related to the
document such as page description, keywords, author,
character set, etc. The web browsers use the metadata to
display content, and keywords are used by search engines and
other web-services.
Character Set
<meta charset=”UTF-8″>
Description of the web-page
<meta name=”description” content=”E-learning”>
Keywords
<meta name=”keywords” content=”HTML, CSS,JavaScript”>
Author
<meta name=”author” content=”DataFlair”>
EXAMPLE
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="E-Learning">
<meta name="keywords" content="HTML , CSS , JavaScript">
<meta name="author" content="Data">
</head>
<body>
<p>Welcome to UNITED.</p>
</body>
</html>
DOCTYPE IN HTML
All HTML documents must start with a <!
DOCTYPE> declaration.
The declaration is not an HTML tag. It is an
"information" to the browser about what document
type to expect.
In HTML 5, the declaration is simple:
<!DOCTYPE html>
THANK YOU

You might also like