HTML/CSS Guide

Common HTML Tags inside body

Tag Definition Examples

<H1>

H1 is a header H1, H2, H3, etc...

<Ul>

Ul is an un orginized list and then use li for each line in the list
  • This
  • is a
  • List

<b>

This bolds the text that is inside the tag This text is bolded

<img alt="'image name'" style="width: 200px;" src"link">

Use this tag with images, The alt part gives a name to the picture, the style="width: 200px makes the picture 200 pixels on all devices, and the src"link" is the image link cat

<link rel="icon" type="image/x-icon" href="/images/favicon.ico">

A favicon is the little image at the top of a website favicon

<a href="link">…>

This is hyperlink to another page CST LINKS This will take you too CST KINKS page

<p></p>

<p> is a tag used for pararaphs

This is a paragraph

This is another paragraph

<iframe src="link">

An Iframe is a live picture in another page

<br>and <hr>

<br> is a page break and <hr> is a line break Hi
there was a page break
now a line break

<i>

This puts text in italics This text is italic

Next page