Network Topology
Network Topology
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