<a> </a>
What is a hyperlink?
Write it! The heading that is the largest size and says "Hello World!
<h1> Hello World!</h1>
CSS stands for this
what is Cascading Style Sheets?
A framework with predefined web page components that respond automatically to window resizing.
What is Bootstrap?
This means to understand what the user is feeling. walk a mile in their shoes...
What is Empathy
The tag for ______ is <br>
What is a line break?
Write this: Welcome to the thunderdome!
with the third largest subheading and a bolded thunderdome
<h3>Welcome to the <b> Thunderdome!</b></h3>
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
Standardized widgets on a website that bundle the actual implementation details into reusable elements
What is a Web Component
We use THIS kind of statement to help come up with the specific problem in the Define stage
What is POV?
<img>
What is an image?
These lines of code make all p tags 24 px large and blue font color
p {
font-size: 24px;
color: blue;
}
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
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?
This act is when a group gets together and throws out ideas...no matter how bad.
what is Brainstorm?
This is a section of a document styled with CSS
What is a <div>?
I used this code to create this list
*Apples
*Bananas
*Oranges
<ul>
<li>Apples</li>
<li>Bananas</li>
<li>Oranges</li>
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
Typically a very large container at the top of a web page that showcases the most important information
What is a jumbotron?
Anything physical that lets a user interact with your idea
What is a prototype?
DAILY DOUBLE
This is where the metadata, like a <title> goes.
What is head?
Blur and image with the class 'test' in CSS coding. It should be blurred by 50px
.test{
filter: blur(50px);
}
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
What are Navbars?
The final step in the design process
what is Testing