HTML stands for HYPER TEXT MARK UP LANGUAGE. It is used to build web pages with static text. Below is the example of simple html code:
- <!DOCTYPE>
- <html>
- <head>
- <title>Web page title</title>
- </head>
- <body>
- <h1>Write Your First Heading</h1>
- <p>Write Your First Paragraph.</p>
- </body>
- </html>