Introduction to HTML5 Final Quiz Answers coursera
Final Quiz – Putting it Together
Q1) Which is the best/proper way to declare that your page uses the HTML5 protocol?
- <!DOCTYPE html>
Q2) Which is the best/proper way to declare that the language for your page is English?
<html lang=en>
<html lang=”english”=”at is the best/proper way to create the meta-data for your page?
<head>
<meta charset="utf-8">
<title>Mister Rogers</title>
</head>
Q3) Which is the best/proper way to declare the header for a page?
<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>
Q4) Which is the best/proper way to declare a section that has an h2 heading and an unordered list?
<section>
<h2>Favorite Foods</h2>
<ul>
<li>stuff</li>
<li>more</li>
<li>stuff</li>
<li>again</li>
</ul>
</section>
Q5). Which is the best/proper way to declare a section that has an h2 heading and three progress elements?
<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>
Q6) 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>
Q7) 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> Copy
<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>
2 Comments
Thanks bhai.. for this article..
ReplyDeleteNice article 🙂
ReplyDelete