What is the HTML
- HTML stands for Hyper Text Markup Language
- HtML was develop by Tim Bemers Lee in 1991.
- HTML document should be saved with .html
- HTML is the standard markup language for creating Web pages.
- HTML describes the structure of a Web page.
- HTML elements tell the browser how to display the content.
- HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
- The current version of HTML is 5 and It was release 2014.
- HTML was published by W3C in 1995.
W3C (It is stand for World Wide Web.)
- It is an organization.
- It sets standard for WEB.
Webpage and Website
Webpage
Website
Types of website
Difference Between Dynamic Website and Static Website.
Dynamic Website
Static Website
Client and Server
Client
Server
Basic structure of HTML
< !DOCTYPE html >
< html lang="en" >
< head >
< meta charset="UTF-8" >
< meta name="viewport" content="width=device-width, initial-scale=1.0" >
< title >Document< / title >
< /head >
< body >
I am body tag add content here... < /body >
< /html >
< html lang="en" >
< head >
< meta charset="UTF-8" >
< meta name="viewport" content="width=device-width, initial-scale=1.0" >
< title >Document< / title >
< /head >
< body >
I am body tag add content here... < /body >
< /html >