Hyper Text Markup Language (HTML)
HTML :

• 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 HTMLdocument and mainly comprises ofdocument header which is represented by<head>...</head> and document bodywhich is represented by<body>...</body> tags.
<head> - This tag represents the document'sheader which can keep other HTML tagslike <title>, <link> etc.
<title>- The <title> tag is used inside the<head> tag to mention the documenttitle.
<body> - This tag represents the document's bodywhich keeps other HTML tags like <h1>,<div>, <p> etc.
Comments
Post a Comment