Hyper Text Markup Language (HTML)

HTML :

HTML Essential Training (2017)

• HTML stands for Hyper Text Markup Language
• HTML describes the structure of a Web page
• HTML consists of a series of elements
• HTML elements tell the browser how to display the content
• HTML elements are represented by tags

HTML Document Writing Format:


 <!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
statement .........
-----------------
</body>
</html>


Tag Description :


<!DOCTYPE html>- This tag defines the document type and
    HTML version.
<html>-       This tag encloses the complete HTML
document and mainly comprises of
document header which is represented by
<head>...</head> and document body
which is represented by
<body>...</body> tags. 
<head> -     This tag represents the document's
header which can keep other HTML tags
like <title>, <link> etc. 
<title>-        The <title> tag is used inside the
<head> tag to mention the document
title. 
<body> -     This tag represents the document's body
which keeps other HTML tags like <h1>,
<div>, <p> etc. 

Comments

Popular posts from this blog

Italic Text on HTML

Subscript Text on HTML