Font size
WorksheetsHTML QUIZ
Total questions: 17
Worksheet time: 22mins
What does this tag mean?
<!DOCTYPE html>
It is telling the browser that the code is HTML 4.
It is telling the browser that the code is HTML 5.
It means it is a XML Document.
It means it is a XHTML Document.
The <!DOCTYPE html> tag is required on all HTML Documents.
True
False
The <center> and <font> elements is a new HTML 5 element.
True
False
The <p> element is used for:
Images
Buttons
Text
Links
Martha used the _____ attribute to section multiple things with the same name.
Example: <div ___ ="nav">
(a)
You can resize the image inside the <img> tag using HTML.
True
False
A programmer wants to make a article section in HTML 5.
What are 3 possible ways he could do that?
<div id="article">
<p>This is a article.</p>
</div>
<div class="article">
<p>This is a article.</p>
</div>
<main-article class="article">
<p>This is a article.</p>
</main-article>
<article>
<p>This is a article.</p>
</article>
Somebody wanted to make a navigation bar without HTML 5.
How would he likely do it?
<HTML-4-nav>
<ul>
<li>Home</li>
<li>Products</li>
</ul>
</HTMl-4-nav>
<div class="nav">
<ul>
<li>Home</li>
<li>Products</li>
</ul>
</div>
<nav>
<ul>
<li>Home</li>
<li>Products</li>
</ul>
</nav>
<navigation>
<ul>
<li>Home</li>
<li>Products</li>
</ul>
<navigation>
BONUS: What is this tag?
<hr />
It is a element that creates a link.
It is a element that creates a line.
It is a element that creates bold text.
Which element do you use to put CSS styles inside a HTML document.
<styles>
<css>
<css-style>
<style>
Which element do you use to put JavaScript inside HTML?
<script>
<javascript>
<scripts>
Which element is used for a HYPERLINK?
<link rel="hyperlink" href="https://example.org">Click Me!</link>
<a href="https://example.org">Click Me!</a>
All of these elements can be used in CSS instead:
<b> <i> <u> <s> <ins> <del>
True
False
How do you make a hyperlink that opens in a new tab?
<a href="https://example.org" link="open-in-new-tab">Click Me!</a>
<a href="https://example.org" target="blank">Click Me!</a>
<a href="https://example.org" target="_blank">Click Me!</a>
The six headers in order are:
<h1>
<h2>
<h3>
<h4>
<h5>
<h6>
<h6>
<h5>
<h4>
<h3>
<h2>
<h1>
How can you make text inside a <p> element bold?
<p><_>Some bold text</_></p>
(a)
How do you feel about HTML so far?
😎
I'm a pro!
🙂
I'm good at this!
😐
I guess it's okay.
🤔
I don't quite understand it.
😢
I have no idea and do not like HTML.
