What HTML tag is used to create a paragraph and what does it look like?
Paragraph tag <p>
What is the file extension for an external CSS style sheet?
.css
This CSS property defines the thickness of an element's border
Border-Width
What is the CSS property that changes the background colour of an element?
background-color
Who won the World Series this year?
LA Dodgers :(
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>
What character is at the end of every CSS declaration?
Semicolon (;)
This CSS property sets the space outside an element, pushing other elements away.
Margin
What are the CSS properties that alter the height and width of an element?
height and width
Who is the Software Club Vice-President?
Nisshak Ganesananthan
What is the name of the HTML tag used to create hyperlinks?
Anchor Tag <a>
True or False:
h1.all {background-color:#333} adds a background color for all h1 elements.
False
Under what circumstance does the following CSS rule center an element horizontally?
margin: auto
When the width of the element is specified
What CSS attribute groups elements together?
the class attribute
Ex:
class="bazinga"
What is the concept that describes when tags are declared within other tags?
What are the two tags that can be used to create a list?
Ordered List <ol>, Un-Ordered List <ul>
What CSS selector selects the descendants of an element that follow certain specifications?
Ex:
.thingy .thingyTwo
Descendent Combinator:
What concept describes the top margin of one element and the bottom margin of another combining to form one margin?
Margin Collapse
What box-sizing value includes the passing, border, and margin within the width and height of the element?
border-box
What is the most used version control software internationally?
Git
What does the following do?
<!DOCTYPE html>
Indicates the version of HTML (HTML5).
What are the three ways in which CSS can be applied to a HTML file?
Internally, Externally, Inline
By default, this value of the box-sizing property makes width and height include only the content, not padding or border
Content-Box
What is the name for the 6 digit value preceded by a pound (#) sign that is used to modify a colour?
Hex (Hexadecimal)
What is the term for the grammatical structure in which HTML and CSS are written (this question is so dumb)
Syntax