HTML Basics
Links, Images & Lists
CSS Basics
CSS Selectors & Properties
Advanced HTML & CSS
100

What HTML stands for

Hyper Text Markup Language

100

creates an ordered (numbered) list?

<ol>

100

What CSS stands for

Cascading Style Sheets

100

symbol used before an ID selector in CSS

#

100

changes text to bold

<strong>

200

the visible content of a webpage

<body>

200

used to create a hyperlink

<a>

200

purpose of CSS

style and design webpages

200

symbol used before a class selector in CSS

.

200

creates a table row

<tr>

300

creates the largest heading

<h1>

300

creates an unordered list

<ul>

300

section where the title goes in on a webpage

<head>

300

changes the size of text

font-size

300

<td> in a table stands for

table data

400

creates a horizontal line

<hr>

400

symbols used around HTML tags

< >

400

symbols that go around CSS declarations

{ }

400

changes the font type

font-family

400

centers text

text-align

500

inserts a line break

<br>

500

What is a hyperlink?

Clickable text or images that take you to another page

500

code that correctly links an external stylesheet

<link rel="stylesheet" type="text/css" href="style.css">

500

CSS property that changes the font to italic

font-style

500

used to create a comment

<!-- comment -->