NEW
Font size
WorksheetsCode.org: Web Development: Unit 2 Lessons 1 - 5 Test
Total questions: 25
Worksheet time: 2hrs 5mins
A collection of interlinked web pages on the World Wide Web
Heading
Website
Digital Footprint
HTML
Hypertext Markup Language, a language used to create web pages
Website Content
Website Structure
Heading
HTML
A piece of a website, marked by a start tag and often closed with an end tag
HTML Element
Digital Footprint
Website Content
Website Structure
The collection of information about an individual across multiple websites on the internet
HTML Element
Website Content
Digital Footprint
HTML Tag
A title or summary for a document or section of a document
HTML
Website Structure
Website
Heading
The special set of characters that indicates the start and end of an HTML element and that element's type
HTML Element
Website Content
HTML Tag
Heading
The raw text, images, and other elements included in a web page
Digital Footprint
Website Content
Website
Website Structure
The purpose of different pieces of content in a web page, used to help the computer determine how that content should be displayed
HTML Tag
Website Structure
Website
Heading
Pair Programming
Two people write code and two people review code. Each person has the same role
One person writes code, while the other reviews each line of code as it is typed in
One person writes and review code
Two people communicate about code
What is the driver role during pair programming
The driver draws code
The driver looks at code
The driver reviews code
The driver writes code
What is the navigator's role in pair programming
The navigator writes code
The navigator draws code
The navigator researches code
The navigator reviews each line of code as it is typed in
Which code defines a paragraph
<!DOCTYPE html>
<html>
<p>
<head>
Which code tells the computer that this is a document written in HTML
<!DOCTYPE html>
<html>
<head>
<p>
Which code defines that it contains all the main content of your web page
<!DOCTYPE html>
<html>
<head>
<body>
Which code defines that it contains information (sometimes called "metadata") about your web page
<html>
<head>
<body>
<p>
Indicates the beginning of your code written in HTML.
<head>
<html>
<p>
<body>
Line Break Tag
<br>
<p>
<body>
<html>
Ordered List Tag
<ul>
<li>
<ol>
<br>
Unordered List Tag
<ol>
<ul>
<br>
<li>
List Tag
<ul>
<li>
<ol>
<br>
This allows web developers to group a set of related items.
Heading
List
HTML
HTML Tag
Horizontal Rule Tag
<p>
<br>
<h1>
<hr>
Which tag is a comment tag?
<!-- This is the title section -->
<p>
<-- This is the title section --!>
<br>
Which tag is a parent element?
<h1>
<p>
<ul>
<hr>
Which tag is a child element?
<ul>
<li>
<h2>
<p>
