Home Guides Contribute

HTML Guide


What is HTML?

HTML, also known as HyperText Markup Language is the most basic langiage for making websites!

It uses "tags" to define elements on the site.


Basic Structure of an HTML Document

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document Title</title>
</head>
<body>
  <h1>Hello World</h1>
</body>
</html>

made with <3 by Sarvesh!