Final Quiz - Putting it Together

Quiz
•
Professional Development, Computers, Other
•
5th Grade - Professional Development
•
Easy
Ali H
Used 1+ times
FREE Resource
Student preview

9 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which is the best/proper way to declare that your page uses the HTML5 protocol?
<I start in the name of html!>
<DOCTYPE! html>
<!DOCTYPE html>
<!starthtml5>
<!DOCTYPE html5 PUBLIC//- WAN; internet- W3C- ICANN>
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which is the best/proper way to declare that the language for your page is English?
<etenglish>
<!englishlanghtml>
<lang=en>
htmlen
<html lang="en">
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the best/proper way to create the meta-data for your page?
<head>
<meta charset="utf-8">
</head>
<body>
<title>Mister Rogers</title>
</body>
<head>
<meta charset="utf-8">
</head>
<meta charset="utf-8">
<title>Mister Rogers</title>
</meta>
<head>
<meta charset="utf-8">
<title>Mister Rogers</title>
</head>
<head>
<meta charset=utf-8>
<title>Mister Rogers</title>
</head>
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which is the best/proper way to declare the header for a page?
<header>
<h1>Mister Rogers</h1>
<nav>
</header>
<a href="one.html">one</a>
<a href="two.two.html">two</a>
<a href="three.html">three</a>
<a href="songs.html">Songs</a>
</nav>
<header>
<h1>Mister Rogers</h1>
<nav>
<a href="one.html">one</a>
<a href="two.two.html">two</a>
<a href="three.html">three</a>
<a href="songs.html">Songs</a>
</nav>
</header>
<head>
<h1>Mister Rogers</h1>
<nav>
<a href="one.html">one</a>
<a href="two.two.html">two</a>
<a href="three.html">three</a>
<a href="songs.html">Songs</a>
</nav>
</head>
<div id = "header">
<h1>Mister Rogers</h1>
<div id = "nav">
<a href="one.html">one</a>
<a href="two.two.html">two</a>
<a href="three.html">three</a>
<a href="songs.html">Songs</a>
</div>
</div>
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which is the best/proper way to declare a section that has an h2 heading and an unordered list?
<section>
<h2>Favorite Foods</h2>
</section> <ul>
<li>stuff</li>
<li>more</li>
<li>stuff</li>
<li>again</li>
</ul>
<section>
<h2>Favorite Foods</h2>
<ol>
<li>stuff</li>
<li>more</li>
<li>stuff</li>
<li>again</li>
</ol>
</section>
<section>
<h2>Favorite Foods</h2>
<p>
<ul>
<li>stuff</li>
<li>more</li>
<li>stuff</li>
<li>again</li>
</ul>
</p>
</section>
<section>
<h2>Favorite Foods</h2>
<ul>
<li>stuff</li>
<li>more</li>
<li>stuff</li>
<li>again</li>
</ul>
</section>
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which is the best/proper way to declare a section that has an h2 heading and three progress elements?
<section>
Achievements
<p>Progress in this course (100%)<progress>100%</progress><br/>
Progress in the Specialization capstone (20%)<progress>20%</progress><br/>
Progress in life goals (70%)<progress>70%</progress></p>
</section>
<section>
<h2>Achievements</h2>
<p>Progress in this course (100%)<progress>100%</progress><br/>
Progress in the Specialization capstone (20%)<progress>20%</progress><br/>
Progress in life goals (70%)<progress>70%</progress></p>
</section>
<section>
<h2>Achievements</h2>
<p>Progress in this course (100%)<progress value="1"></progress>
Progress in the Specialization capstone (20%)<progress value="20" max="100"></progress>
Progress in life goals (70%)<progress value="70" max="100"></progress></p>
</section>
<section>
<h2>Achievements</h2>
<p>Progress in this course (100%)<progress value="1"></progress><br/>
Progress in the Specialization capstone (20%)<progress value="20" max="100"></progress><br/>
Progress in life goals (70%)<progress value="70" max="100"></progress></p>
</section>
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the best/proper way to declare a section that has an h2 heading and uses a detail tag?
<section>
<h2>More about me</h2>
<details open>
<h2>My Childhood</h2>
<p>stuff happened, I grew up</p>
</details>
</section>
<section>
<h2>More about me</h2>
<details open>
<summary>My Childhood</summary>
<p>stuff happened, I grew up</p>
</details>
</section>
<section>
<h2>More about me</h2>
<details>
<summary>My Childhood</summary>
<p>stuff happened, I grew up</p>
</div>
</section>
<section>
<h2>More about me</h2>
<details>
<summary>
My Childhood
<p>stuff happened, I grew up</p>
</summary>
</details>
</section>
8.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the best/proper way to create a footer that has an image, paragraph, and link? Be careful, that paragraph includes a special entity.
<footer> <p> <img src="http://www.intro-webdesign.com/images/newlogo.png" alt="new logo"/> This page was created by Mister Rogers & Colleen van Lent. To learn more about web design, visit <a href="http://www.intro-webdesign.com">Intro to Web Design</a> </p><footer>
<div id = "footer"> <p> <img src="http://www.intro-webdesign.com/images/newlogo.png" alt="new logo"/> This page was created by Mister Rogers & Colleen van Lent. To learn more about web design, visit <a href="http://www.intro-webdesign.com">Intro to Web Design</a></p>
</div>
<div id = "footer"> <p> <img src="http://www.intro-webdesign.com/images/newlogo.png" alt="new logo"/> This page was created by Mister Rogers & Colleen van Lent. To learn more about web design, visit <a href="http://www.intro-webdesign.com">Intro to Web Design</a></p>
</div>
<footer>
<p>
<img src="http://www.intro-webdesign.com/images/newlogo.png" alt="new logo">
This page was created by Mister Rogers & Colleen van Lent. To learn more about web design, visit
<a href="http://www.intro-webdesign.com">Intro to Web Design</a>
</p>
</footer>
9.
OPEN ENDED QUESTION
3 mins • 1 pt
Do you like this course?
Evaluate responses using AI:
OFF
Popular Resources on Wayground
10 questions
Video Games

Quiz
•
6th - 12th Grade
20 questions
Brand Labels

Quiz
•
5th - 12th Grade
15 questions
Core 4 of Customer Service - Student Edition

Quiz
•
6th - 8th Grade
15 questions
What is Bullying?- Bullying Lesson Series 6-12

Lesson
•
11th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
22 questions
Adding Integers

Quiz
•
6th Grade
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade