HTML/CSS Guide

Common HTML Tags

outside.hmtl

Tag Definition Examples Notes
p> creates a parahgraph "p> text goes here /p
h1> creates a heading h1>heading /h1> *note the bigger the number after the "h" the smaller the heading becomes
!-- --> to add reminders for the coder !-- Write your comments here -->
body style=":"> makes the background a certain colour body style="background-color:colour go here;">
style="font-family:;"> changes the font of specific text style="font-family:font;">text
ul> creates an unordered list ul> li>something /li>
ol> creates an ordered list ol> li>something /li> /ol>
li> tag that you would use in and unordered list (ul) or an ordered list (ol) ol> li>something /li> /ol>
href= "" target="_blank"> sends you to a diffrent website in a diffrent tab href= "website.com" target="_blank"> text goes here *note, put an "a>" and /a> around
img src="" alt="" width="" height=""> inserts a image in your website img src="image.jpg" alt="image" width="###" height="###"