HTML Tutorial

What is HTML

HTML stands for HyperText Markup Language.

It is used for creating and designing web pages.

Simple Website

Simple website with html

                                                    
                                                        <!DOCTYPE html>
<html lang="en">
<head>
  <title>Hello World</title>
</head>
<body>
  <h1>Hello World!</h1>
  <p>This is a simple "Hello World" website.</p>
</body>
</html>