HTML Basics

Common HTML Tags Reference

Tag Description Example
<h1><h6> Headings from largest to smallest <h2>My Title</h2>
<p> Paragraphs of text <p>Hello World</p>
<img> Inserts images <img src="photo.jpg" alt="example">
<a> Creates links <a href="page.html">Click here</a>

CSS Basics

Example CSS Syntax

body {
  background-color: #0b0d10;
  color: #e9eef5;
  font-family: Arial, sans-serif;
}

Extra Tips