Final Quiz - Putting it Together Coursera Answers
Introduction to HTML5
By University of Michigan
Final Quiz - Putting it Together
Question 1
Which is the best/proper way to declare that your page uses the HTML5 protocol?
- <!DOCTYPE html>
- <!DOCTYPE>
- <!html>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.01//EN" "http://www.w3.org/TR/html5/strict.dtd">
Answer: <!DOCTYPE html>
Question 2
Which is the best/proper way to declare that the language for your page is English?
- <html lang="en">
- <lang="en">
- <html lang=en>
- <html lang="english">
- <lang="english">
Answer: <html lang="en">
Question 3
What is the best/proper way to create the meta-data for your page?
Answer:
<head>
<meta charset="utf-8">
<title>Mister Rogers</title>
</head>
Question 4
Which is the best/proper way to declare the header for a page?
Answer:
<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>
Question 5
Which is the best/proper way to declare a section that has an h2 heading and an unordered list?
Answer:
<section>
<h2>Favorite Foods</h2>
<ul>
<li>stuff</li>
<li>more</li>
<li>stuff</li>
<li>again</li>
</ul>
</section>
Question 6
Which is the best/proper way to declare a section that has an h2 heading and three progress elements?
Answer:
<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>
Question 7
What is the best/proper way to declare a section that has an h2 heading and uses a detail tag?
Answer:
<section>
<h2>More about me</h2>
<details open>
<summary>My Childhood</summary>
<p>stuff happened, I grew up</p>
</details>
</section>
Question 8
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.
Answer:
<footer>
<p> <img src="http://www.intro-webdesign.com/images/newlogo.png" alt="new logo">
This page was created by Troy & Colleen van Lent. To learn more about web design, visit
<a href="http://www.intro-webdesign.com">Intro to Web Design</a>
</p>
</footer>
Related Posts
Subscribe Our Newsletter
0 Comments to " Final Quiz - Putting it Together Coursera Answers"
Post a Comment
Share your view here!!