Bootstrap Recap

Bootstrap Recap

1st - 3rd Grade

8 Qs

quiz-placeholder

Similar activities

Programação de Computadores - Aula - 6

Programação de Computadores - Aula - 6

1st - 3rd Grade

10 Qs

HTML Assessment 1

HTML Assessment 1

1st - 3rd Grade

10 Qs

Bài tập trắc nghiệm C++(tiếp)

Bài tập trắc nghiệm C++(tiếp)

3rd Grade - University

10 Qs

CĐ 3 - Bài 1 l5

CĐ 3 - Bài 1 l5

3rd Grade

11 Qs

Ôn tập về phần mềm soạn thảo văn bản

Ôn tập về phần mềm soạn thảo văn bản

1st - 5th Grade

10 Qs

Bazy danych i dodatek Power Query - Informatyka kl. 2

Bazy danych i dodatek Power Query - Informatyka kl. 2

1st - 5th Grade

10 Qs

3.9 Synthesis: 3.6 + 3.7

3.9 Synthesis: 3.6 + 3.7

2nd Grade

10 Qs

Computer Intro-Final Review 4

Computer Intro-Final Review 4

KG - University

10 Qs

Bootstrap Recap

Bootstrap Recap

Assessment

Quiz

Computers

1st - 3rd Grade

Hard

Created by

Njemele Bush

Used 9+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to add a default-styled button to an <a> tag?

<a href="#" class="btn btn-default">Button</a>

<a href="#" class="btn-default">Button</a>

<a href="#" class="btn default">Button</a>

<a href="#" class="btn">Button</a>

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following will correctly display a page header with subtext?

<h1>

This is the header <small> This is the subtext </small>

</h1>

<div>

<h1>

This is the header <small> This is the subtext </small>

</h1>

</div>

<div class="page-header">

<h1>

This is the header <small> This is the subtext </small>

</h1>

</div>

<page-header>

<h1>

This is the header <small> This is the subtext </small>

</h1>

</page-header>

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between .container and .container-fluid?

.container-fluid keeps margins to the left and right of the content, while .container fills the entire width of the window.

.container-fluid is responsive to the window size, while container creates a fixed width that never changes, regardless of window size.

.container-fluid constantly updates to fit the width of the window, while .container will update occasionally as the window is resized

.container should be used in headers, while .container-fluid is used for p tags

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True or False: If you use Bootstrap’s framework for your site, you can’t add your own CSS rules.

True

False

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many columns fit in a single row in the Bootstrap grid system?

3

5

12

6

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the smallest device that will display these columns side by side?

Desktop

Tablet

Laptop

Smart Phone

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True or False: It is impossible to have more than one jumbotron on a given page

True

False

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following creates a responsive jumbotron on your website?

<jumbotron>

<h1>This text will be in a jumbotron</h1>

</jumbotron>

<div class="container">

<jumbotron>

<h1>This text will be in a jumbotron</h>

</jumbotron>

</div>

<div class="container">

<div class="jumbotron">

<h1>This text will be in a jumbotron</h>

</div>

</div>

<div class="jumbotron responsive">

<h1>This text will be in a jumbotron</h1>

</div>