What is HTML ?
HTML stands for Hyper Text Markup Language. HTML is a basic building block on any website.
It is used to design a basic structure of our web page.
Tim Berners-Lee is known as a father of HTML.
Structure of html
<!DOCTYPE html>
Its define the version of html.
<html>
It is a root element.
<head>
It is used to contains the header information.
<title>
Its define the title of html page.
<body>
It contain the content of the web page
Basic structure of html page
- <!DOCTYPE html>
- <html>
- <head>
- <title>I am title of your web page </title>
- </head>
- <body>
- This is a body of your page
- </body>
- </html>
comment 0 comments
more_vert