What is HTML?
HTML describes for Hypertext Markup Language. It is a very simple language that is easy to understand. It plays the most important role to design web pages.
What is HTML used for?
HTML is used to build the layout of web pages that are shown on the World Wide Web. It includes attributes and tags that are used to create web pages.
HTML Basic Format Page Structure
The necessary layout of an HTML page is given below. It includes the basic building-block elements such as doctype declaration, HTML, head, title, and body elements.
<!DOCTYPE html> <html> <!-- Head Section start --> <head> <!-- Page title --> <title>Page Title</title> </head> <!-- Body Section start --> <body> <!-- Used to display heading here --> <h1>Welcome to Oixiesoft</h1> <!-- display paragrapg here --> <p>A tutorial wesite.</p> </body> </html>