Creates paragraph
What is <p> tag?
Change paragraph color
What does p{ color:[insert color];} do?
At start of Html page
What is <!DOCTYPE html>?
Creates paragraph that says "I like Cheese"
What does "<p> I like Cheese </p>" do?
Creates heading
What is <h[insert number 1-6]> tag?
Changes text size for paragraph
What does p{ font-size:[insert number]px;} do?
Before the main section of code
What is <head> tag?
Creates an image
HTML tag you put miscellaneous CSS code in
What is <body> tag?
attaches CSS to HTML
What is <link> tag?
End of smallest heading
What is </h6> tag?
Changes size of image border
What does img{ border-width: [insert size]} do?
Attaches a second HTML page to your main one
What is <a> tag?
The tag you should type the code into in HTML
What is <body> tag?
Moves allocated area to the right
What does float:right do?
First tag in HTML
What is <HTML>?
Creates an img with sizes 300x400
What does <img src="[img file]" href="[img description] Height:400 Width:300>