NEW
Font size
WorksheetsCode.org CS Discoveries Unit 2 Web Development
Total questions: 23
Worksheet time: 12mins
A piece of a website, marked by a start tag and often closed with an end tag.
HTML tag
HTML element
Website content
Website structure
The purpose of different pieces of content in a webpage; used to help the computer determine how that content should be displayed
HTML tag
HTML element
Website content
Website structure
HTML tag that defines the document's body
<document></document>
<doc></doc>
<body></body>
<b></b>
HTML tag that defines the paragraph
<paragraph></paragraph>
<par></par>
<p></p>
<para></para>
A title or summary for a document or section of a document.
Heading
HTML tag
HTML element
HTML
HTML tag that defines the HTML document.
<html></html>
<doc></doc>
<type></type>
<htmldoc></htmldoc>
HTML tag that defines information about the document.
<info></info>
<head></head>
<html></html>
<data></data>
What is HTML?
Holographic Markup Language, a language used to define holographic images
Hyperspace Mileage Language, a language used to define time travel
Hypertext Markup Language, a language used to create web pages
Honeynut Marshmallow Loops, a delicious cereal for kids.
A special set of characters that indicates the start and end of an HTML element and that element's type.
HTML tag
HTML element
Website structure
Website content
The raw text, images, and other elements included in a webpage.
Website structure
HTML tag
HTML element
Website content
HTML tag that defines the document type. Goes before the <html> start tag.
<!DOCTYPE>
<!TYPE>
<!DOCUMENT-TYPE>
<!DOC>
What does the "src" in the image tag stand for?
source
screen
Nothing--it's just HTML code
sorta code
What is Creative Commons?
A collection of public copyright licenses that restrict anyone from distributing copyrighted work
A collection of public copyright licenses that says that a work belongs to no one
A collection of public copyright licenses that says it's okay to plagiarize
A collection of public copyright licenses that enable the free distribution of an otherwise copyrighted work
What is the correct way to add an image to your website?
<img src="bird.jpg">
<img src="bird.jpg">bird</img>
<img>bird.jpg</img>
<img scr="bird.jpg">
What is the correct way to create a hyperlink?
<a ref=home>index.html</a>
<a href="index.html">Home</a>
<a href "index.html">Home</a>
<a href>Home</a>
Which tag correctly defines a list item in an ordered or unordered list?
<ol></ol>
<li></li>
<list></list>
<ul></ul>
When added to your HTML file, which of the following will NOT HELP make your code easier to read and understand?
comments
indentation
bugs
whitespace
What does the "alt" tag do when added to the <img> tag?
Adds an alternative location where the image file can be found
Adds text under the image
Adds text that describes the image if the image cannot load
Adds an alternative image to show if the user doesn't like the first one
Which heading tag produces the largest text?
<h1></h1>
<h6></h6>
<h4></h4>
<h10></h10>
What tag tells the computer that this is a document written in HTML?
<!DOCTYPE html>
<!-- -->
<html>
<doctype=html>
Which heading tag produces the smallest text?
<h1></h1>
<h6></h6>
<h4></h4>
<h10></h10>
