Tag! You're it!
Coding Syntax
Pain in the CSS
Pick Yourself up by the "Bootstraps"
"Design"er Clothing
400

<a> </a>

What is a hyperlink?

400

Write it! The heading that is the largest size and says "Hello World!

<h1> Hello World!</h1>

400

CSS stands for this

what is Cascading Style Sheets?

400

A framework with predefined web page components that respond automatically to window resizing.

What is Bootstrap?

400

This means to understand what the user is feeling. walk a mile in their shoes...

What is Empathy

800

The tag for ______ is <br>

What is a line break?

800

Write this: Welcome to the thunderdome!

with the third largest subheading and a bolded thunderdome

<h3>Welcome to the <b> Thunderdome!</b></h3>

800

p{color : red;}  

.test{color : blue;}  

#final{color : white;} 

What color will this be below?

<p class=test id=test>This might be a trick questions</p>

What is blue

800

Standardized widgets on a website that bundle the actual implementation details into reusable elements

What is a Web Component

800

We use THIS kind of statement to help come up with the specific problem in the Define stage

What is POV?

1200

<img>

What is an image?

1200

These lines of code make all p tags 24 px large and blue font color

p {

font-size: 24px;

color: blue;

}

1200

p{color : red;}

.test{color : blue;}

#final{color : white;}

What color will this be below?

<p>This is not a trick question</p>

What is red

1200

DAILY DOUBLE


A website in which the parts of the webpage react and possibly reorder or hide when the window changes size

What is a responsive website?

1200

This act is when a group gets together and throws out ideas...no matter how bad.

what is Brainstorm?

1600

This is a section of a document styled with CSS 

What is a <div>?

1600

I used this code to create this list

*Apples

*Bananas

*Oranges

<ul>

         <li>Apples</li>

         <li>Bananas</li>

         <li>Oranges</li>

1600

p{color : red;}  

.test{color : blue;}  

#final{color : white;} 

What color will this be below?

<h1 id="final><p>Now this might get tricky</p></h1>

what is white

1600

Typically a very large container at the top of a web page that showcases the most important information

What is a jumbotron?

1600

Anything physical that lets a user interact with your idea

What is a prototype?

2000

DAILY DOUBLE

This is where the metadata, like a <title> goes.

What is head?

2000

Blur and image with the class 'test' in CSS coding. It should be blurred by 50px

.test{

    filter: blur(50px);

}

2000

p{color : red !important;}  

.test{color : blue;}  

#final{color : white;} What color will this be below?

<p class=final id=test id=final>It's a TRAP!</p>

what is Red

2000
the responsive 'meta' components that serve as navigation headers for your application or site.

What are Navbars?

2000

The final step in the design process

what is Testing

M
e
n
u