Search

Create a hello world example HTML


Description
Example of a hello world code to illustrate the basic syntax of the programming language.


<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>Document title</title>
    </head>

    <body>
        Hello World
    </body>

</html>
HTML5 Example
SEE ALSO