HTML (2)
Document Structure in HTML5
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>
.....................
</title>
:
</head>
<body>
:
</body>
</html>
Tags Used
<doctype> = This tells the browser about the Version of HTML.
It does not have any closing tag.
<html lang="...."> = It is used to specify Language
- Starting <html lang="....">
- Ending </html>
<Meta> = It is used to specify character encoding used. By default UTF-8 encoding is used for English pages.
It does not have closing tag.
HTML Writing Tool
For writing the HTML codes Text Processors like NOTEPAD are preferred and the Browser like Google Chrome, Morzilla Firefox.
0 Comments