What is HTML? · HTML is a computer standard Markup language, which is used for creating web pages or web applications. HTML stands for Hypertext Markup Language , where Hypertext refers to link two web pages, and Markup is a computer language which is used to apply layout and formatting for a page. A web browser receives an HTML document from the server and converts it into a webpage. Following is a simple example for HTML page which gives an idea about how HTML page looks: <!DOCTYPE html> <html> <head> <title>This is title</title> </head> <body> <h1>This is a web-page</h1> <p>This is First paragraph</p> </body> ...