Buttons, Tables, Forms
HTML Doc Setup
Bootstrap
Elements
Flex / Grid
100

Name an attribute that may go inside the <button>.

Each attribute is an another 100 points.

some include:

type=""

name=""

value=""

100

What HTML tag is at the very beginning of a new HTML document?

<!DOCTYPE HTML>

100

Where do we link bootstrap to be usable in our HTML?

Hint: Similar to our own style.css

Inside <head> with <link> as well.

100
What is the correct html element for the largest heading?
h1
100

What value does "Display: ???" require, to create a flex box?

Display: flex;

200

What HTML element starts off creating a table?

<table> 

</table>

200

What is an attribute and where do they go?

All HTML elements can have attributes and they provide additional information about elements. 

Attributes are always specified in the start tag and come in name/value pairs like: name="value"

200

What is the class name bootstrap allows us to use, to create and contain things such as columns & rows?

<div class="container">

</div>

200

What is the correct HTML element for creating a list that is numbered.

<ol>

200

What is the CSS grid property to create a gap in between? 

grid-gap:

300

What HTML specifies a new row for a table?

<tr>

</tr>

300

True or False!

the <html> element wraps around <head></head> & <body></body>?

True!

300

We always need to specify the screen size and column number when specifying a bootstrap grid column item. True or False?

False

300

What HTML element do we commonly use when creating Grids, grid items, Flex boxes, and flex items?

<div>

300

What property & value makes the direction of content  in a flex box horizontal?

flex-direction: row / row-reverse;

400

What is the difference between <td> & <th>? When do you use each one?

<td> = Table Data

<th> = Table Header

400

We need specific body elements in our doc setup, True or False? (i.e. <img>, <p>, etc.)

False

400

What are the three conventions for creating column items?

col-screensize-columnnumber

col-columnnumber

col

400

What is the correct HTML element and TWO attributes to implement an image? 

<img src="" alt="">

400

What are the 3 types of values one may use to specify a size for grid rows/columns?

px, % or fr.

500

What values is used with the 'type' attribute inside an input element, to create a text form with password bubbles?

*Hint: Think of our login example we wrote*

<input type=" ??? ">

<input type=" password ">
500

How do we add our style.css file to our HTML file?

Hint: Give specific element and attributes.

<link rel="stylesheet" href="./style.css"/>

500

What does it mean that Bootstrap is responsive?

Very useful in creating webpages with different screen sizes & scales.

500

What HTML Element kicks off an area or section of HTML that is responsible for saving data that a user enters.

Answer: form

<form>

     <label>Username:</label>

     <input type="password"/>

</form>

500

Flex-wrap allows you to do what?

Define how elements will wrap when the browser width is changed.

M
e
n
u