HTML Syntax
CSS Syntax
Box Model
Properties and Attributes
Miscellaneous
100

What HTML tag is used to create a paragraph and what does it look like?

Paragraph tag <p>

100

What is the file extension for an external CSS style sheet?

.css

100

This CSS property defines the thickness of an element's border

Border-Width

100

What is the CSS property that changes the background colour of an element?

background-color

100

Who won the World Series this year?

LA Dodgers :(

200

What is the difference between an opening tag and a closing tag?

There is a forward slash inside of the closing tag

Opening Tag: <tag>

Closing Tag: </tag>

200

What character is at the end of every CSS declaration?

Semicolon (;)

200

This CSS property sets the space outside an element, pushing other elements away.

Margin

200

What are the CSS properties that alter the height and width of an element?

height and width

200

Who is the Software Club Vice-President?

Nisshak Ganesananthan

300

What is the name of the HTML tag used to create hyperlinks?

Anchor Tag <a>

300

True or False:
h1.all {background-color:#333} adds a background color for all h1 elements.

False

300

Under what circumstance does the following CSS rule center an element horizontally?

margin: auto 

When the width of the element is specified

300

What CSS attribute groups elements together?

the class attribute

Ex:

class="bazinga"

300

What is the concept that describes when tags are declared within other tags?

Nesting
400

What are the two tags that can be used to create a list?

Ordered List <ol>, Un-Ordered List <ul>

400

What CSS selector selects the descendants of an element that follow certain specifications?

Ex:

.thingy .thingyTwo

Descendent Combinator:

400

What concept describes the top margin of one element and the bottom margin of another combining to form one margin?

Margin Collapse

400

What box-sizing value includes the passing, border, and margin within the width and height of the element?

border-box

400

What is the most used version control software internationally?

Git

500

What does the following do?

<!DOCTYPE html>


Indicates the version of HTML (HTML5).

500

What are the three ways in which CSS can be applied to a HTML file?

Internally, Externally, Inline

500

By default, this value of the box-sizing property makes width and height include only the content, not padding or border

Content-Box

500

What is the name for the 6 digit value preceded by a pound (#) sign that is used to modify a colour?

Hex (Hexadecimal)

500

What is the term for the grammatical structure in which HTML and CSS are written (this question is so dumb)

Syntax