Basic of Html
Table of contents
Introduction to Html
HTML is the standard markup language for web pages.
HTML stands for( Hyper Text Markup Language).
HTML describes the structure of a Web page
HTML consists of a series of elements
HTML elements tell the browser how to display the content
Or in general terms, we can say that HTML works like a skeleton for any web page.
If we want to create any web pages then there is a need to define the structure of web pages which is done with the help of HTML.
Example
Here is the boilerplate of html
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body>