HTML/CSS Guide - part 1

Common HTML Tags inside of <body>

click here to be redirected to outside.html

Tag Definition Example
<p> ... </p> creates a paragraph

This is a paragraph

This is another paragraph

<h1> ... </h1> creates a heading

This is a heading

<hr> creates a horizontal line
<br> creates a line break in between text

Above the line break
Below the line break

<ol>
<li> ... </li>
<li> ... </li>
</ol>
creates an ordered list
  1. item 1
  2. item 2
  3. ...
<img src="..." alt="..." style="width:...%"> creates an image with your specifications jpg
<em> ... </em> italicizes text italian text
<a href="link"> ... </a> creates a hyperlink to another page Click here to learn more
<span> ... </span> creates inline css for a piece of text this text has inline css
<iframe src="..."></iframe> embeds a website or video into your website