Web & UI

HTML

The standard markup language for documents designed to be displayed in a web browser.

Share this starting point code.study/html
Created by
Tim Berners-Lee
First appeared
1993
Official resource
Visit the main website

Your first program

Hello, World!

HTML
<!DOCTYPE html>
                <html>
                <head>
                    <title>Hello World</title>
                </head>
                <body>
                    <p>Hello, World!</p>
                </body>
                </html>