+ HTML is an acronym for HyperText Markup Language, and it is the + standard language for creating web-pages. Every web page you surf on + your browser is built using HTML. The primary use of HTML to provide + a proper structure to the web-page so all the content or data of the + page could represent adequately. A stand-alone HTML can create only + static and skeleton looking black and white pages, but with the help + of CSS and JavaScript , we can create a more interactive and + intuitive web-page. When we try to visit a website or click on the + link, we basically request the server to show us the page, then the + server acts on our request and sends us an appropriate HTML document + as a response. Then this HTML document parsed by browse, and we able + to see the content. +
+HTML Document
++<!DOCTYPE html> + <html> + <head> + <title>Page Title</title> + </head> + <body> + + <h1>This is a Heading</h1> + <p>This is a paragraph.</p> + + </body> + </html>+