HTML
CSS
Flexbox
Animation
Other
100

What does the tag for a text in bold look like?

<b>

100

Name three of the most common CSS properties.

Font: Sets the style and size of text 

Colors: Sets color of element

Background: Sets background color or image

Margin: Sets space between elements

Padding: Sets space inside elements

Borders: Sets style and size of border

100

What is flexbox? 

An easy way to arrange elements.

100
How do we create animations on a website without using JavaScript? 

CSS

100

What is coding? 

A way to communicate with a computer.

200

What does <div> do? 

Divide up page content into sections, and applying styles.

200

How many curly brackets are generally used to write code in CSS? 

#top {

background-color: red;

}


200

What line of code must be in the CSS to use Flexbox? 

display: flex

200
What property must be used in order to create an animation? 

@keyframes

200

What is frontend coding?

Front-end coding is used to create a visually pleasing and user-friendly web application through.

300

What is HTML? 

It sets the structure of a Web page by telling the browser how to display the content.

300

What is CSS? 

Controls the style and layout of a webpage. 

300

What code would position an element to the upper right hand corner of the screen? 

justify-content: flex-end

300

To get an animation to work, you must bind what to the element? 

Animation name/animation

300

What is backend coding? 

Backend coding is used for storing data in a database. Servers and databases are important part of backend development. Python and javascript are popular coding languages used for backend development.

400

What is the tag for an unordered list? 

<ul> <li> list </li> </ul>

400

What does CSS stand for? 

Cascading Style Sheets

400

What does flex-direction do? 

Defines in which direction the container wants to stack the flex items or how elements are ordered. 

400

How do we change the time an animation takes? 

animation-duration

400

What are the three pillars of frontend development? 

HTML, CSS, JavaScript

500

What type of tag DOES NOT require a closing tag? 

<img> or image

500

What is the difference between margin and padding? 

Margin - outside space of the element itself

Padding - inner space surrounding the element

500

What is the difference between justify-content and align-items? 

justify-content: controls alignment of all items on the main axis (horizontal in most cases)

align-items: controls alignment of all items on the cross axis (vertical in most cases)

500

Explain (roughly) the code that would move an element into the screen from the right. 

.elementCode{

animation-name: moveFromRight

}

@keyframes moveFromRight{

0%{right: -300px;}

100%{right 30px;}

}

500

What are the languages generally used for backend development? 

Python and JavaScript

M
e
n
u