HTML Old School

Minimal HTML Page

You probably asking yourself what is the minimal HTML code you need to write web page.

The answer is only 3 html tags we need.

  • <html> tells browser that it is HTML document
  • <head> sends browser some meta (not visible by user) data
  • <body> sends browser visible data (content)

 

<html>
<head>
    <title>Minimal</title>
</head>
    <body>
        This is the smallest web page in the world!
    </body>
</html>

 

See example: 0120minimal.html