HTML tutorial

HTML is the standard markup language for Web pages.

Usually didn't used standalone, but alongside with CSS and JavaScript. Html can be used for developing other types of application like mobile application.

Html code look like this

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">   </meta>
        <title>Title</title>
    </head>

    <body>
        <p>Some text for user. </p>
    </body>
</html>