HTML Cheat Sheet

HTML Tag Description Example
<!DOCTYPE html> Defines the document type <!DOCTYPE html>
<html> Defines the document language <html lang="en">
<head> Defines the document head <head>
  <title>HTML Cheat Sheet</title>
  <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body> Defines the document body <body> <h1>HTML Cheat Sheet</h1> <p>This is a cheat sheet for HTML.</p> </body>
<h1> Defines a heading <h1>HTML Cheat Sheet</h1>
Click me