HTML Basics
CSS Basics
HTML Tags
CSS Properties
Misc.
100

HTML dictates this part of a webpage

What is structure?

100

CSS dictates this part of a webpage

What is style/appearance?

100

The standard tag for text

What is <p>?

100

This property changes the color of text

What is color?

100

This color model splits colors into three values, often used for computers

What is RGB?

200

This section of the webpage has the metadata, the information we don't see

What is the head?

200

The full name of CSS

What is Cascading Style Sheets?

200

This tells the browser that the file is an HTML document

What is <!DOCTYPE html>?

200

The font-size property can be set in these two ways

What are % and px?

200

This number system consists of 16 digits and can be used as a 6-digit color code

What is hexadecimal?

300

(Almost) every tag needs this at the end

What is a closing tag?

300

CSS replaces and expands on this HTML attribute

What is style?

300

The tag for links (external or within project)

What is <a>?

300

This property decides where to place text on a page

What is text-align?

300

Color represented by #000000 or rgb(0, 0, 0)

What is black?

400

This part of your webpage tells the browser what the page is called

What is the title?

400

The required punctuation after a selector

What are curly brackets {}?

400

This tag is used to embed a video or other webpage into your page

What is <iframe>?

400

Property for deciding text font

What is font-family?

400

HTML has these two types of lists, represented by <ul> and <ol>

What are unordered lists and ordered lists?

500

The full name of HTML

What is HyperText Markup Language?

500

CSS selectors come in these three types

What are tag, class, and ID?

500

Creating a table requires these four tags

What are <table>, <tr>, <th>, and <td>?

500

These three properties affect the border of elements

What are border-style, border-size, and border-color?

500

CSS uses no punctuation for a tag selector, . for a class selector, and this for an ID selector

What is a hashtag/number sign/#?