png

HTML/CSS Guide

Common HTML Tags inside the <body>

Tag Definition Examples
<h1>
<h2>
...
<h6>
These are the staring headers that appper bigger the lower number is

March 9 2026

<p></p> This tag is the paragraph tag, used to display a large block of text On March 9 2026 i went to the market and ate gatorade from acient greese...
<ul></ul>
<li>< /li>
ul is the unordered lists shown with bullet points, and li is the tag for the bullet itself
  • Mar, 10 2026
  • May, 5 1953
  • September, 21, 2026
<ol></ol>
<li>< /li>
ol is the orders lists shown with numbers, but this time li becomes a number increasing by 1 each tag
  1. March, 10 2025
  2. May, 4 1953
  3. September, 21 1057
<div></div> div is group of code that applys inline or outline CSS to the website eg backround coulor, font, and text coulor.
This paragraph is being effected by a <div>
<a href="link"></a> This tag is a hyperlink that will send you to a diffrent website Nike
<br><hr> br is a line break and hr adds a line to that break On march, 10
there was a cow
also a big chicken.
<img src="link" alt="pic"> This tag is an image in a website jpg
<span></span> span is way to add/change CSS to a <div> This word is span
<strong></strong> This is makes the text within a paragraph bold I Love bagles

Page 2