HTML is a Hyper Text Markup Language which is used to create web pages and web applications.
HTML is easy to learn.
Hyper Text:-The entry of text inside a text is called Hyper Text.Hyper Text is a way to link two or more web pages.
Markup Language:-Markup Language works to make text dynamic.
What can you do with HTML:
You can add table, list, images etc. in HTML.
Through hyperlinks you can link one web page to another web page.
You can create a form and add e-mail, address etc. to it You can add movies,videos,sound clips,other HTML documents,audio inside HTML. You can create offline web page from HTML without internet.
An Example of HTML:-
Input:-
<!DOCTYPE html> <head> <title>Title</title> </head> <body> <h1>This is h1 Heading</h1> <span>This is span tag</span> </body> </html>
Output: