Introduction to HTML
- HTML stand for Hypertext Markup Language.
- HTML is use to create web page.
- HTML is markup language which is use to tell browser how to display web page.
Simple HTML Code:
<html lang="en">
<head>
<title>Introduction to HTML</title>
</head>
<body>
</body>
</html>
The above code is the basic structure of HTML .
- <html> is the start tag .
- <head> tag is used for title ,style etc.
- <title> tag is use to display the title of the web page,.
- </head> tag is the end tag of <head> tag.
- </title> tag is the end tag of <title> tag.
- <body> tag is the main tag. All the content is present in the body tag.
- </body> tag is the end tag of body tag.
- </html> tag is the end tag of html tag.
No comments:
Post a Comment