Introduction to HTML

HTML( Hypertext Markup Language ) is the Language that is used to write the contents of a webpage. HTML is the standard markup file for creating webpages. It is the standard language used for documents to be displayed in a web browser. It describes the structure and content of a webpage. It is often assisted by technologies such as Cascading Style Sheet(CSS) and scripting languages such as JavaScript.

The code below is an example of a basic HTML code.

            <!DOCTYPE html>
            <html lang="en">
            <head>
               <meta charset="UTF-8">
               <meta name="viewport" content="width=device-width, initial-scale=1.0">
               <title>Document</title>
            </head>
            <body>

            </body>
            </html>