HTML Tutorial

HTML stands for Hypertext Markup Language. It is designed to display documents on the web browser. In Other words, Html is the basic element needed to create a webpage.

We use Cascading Style Sheets (CSS) to design the webpage and make it look good. Many other technologies like php, javascript, etc are used for the scripting purpose.

A simple HTML code will look something like: 

<html>
    <head>
        <title>
            Your title here
        </title>
    </head>
    <body>
        <p> This s a basic webpage</p>
    </body>
</html>