WorksheetsHTML Basics
Total questions: 40
Worksheet time: 20mins
If there is an error in this code, where is it?
No error in this code.
Line 5
Line 9
Line 11
If there is an error in this code, where is it?
No error in this code.
Line 5
Line 9
Line 11
If there is an error in this code, where is it?
No error in this code.
Line 5
Line 9
Line 11
If there is an error in this code, where is it?
No error in this code.
Line 5
Line 9
Line 12
You want to change the tab from "Go Tigers" to "Tiger Website". Which selection will accomplish this?
<title>Tiger Website</title>
<tab>Tiger Website</tab>
<page>Tiger Website</page>
<h1>Tiger Website</h1>
Which tag was used to place the purple tiger paw on this page?
<a>
<img>
<pic>
<p?
You would like to add a comment to document some of your HTML code. Which selection would do this?
<!-- This section lists sports at LBMS. -->
!-- This section lists sports at LBMS.
// This section lists sports at LBMS.
COMMENT - This section lists sports at LBMS.
The standard programming language for creating web-based files which are accessed on the internet.
Hypertext markup language
Cascading style sheets
Worldwide web
Internet programming
Files that HTML pages reference containing layout styles, colors, alignment, backgrounds etc.
Hypertext markup language
Cascading style sheets
Worldwide web
Internet programming
Network of online content on the internet that connects files & documents by hypertext links.
Hypertext markup language
Cascading style sheets
Worldwide web
Internet programming
Words or characters in angle brackets that identify the structure & meaning of text in a document.
Tags
Keyword
Case Sensitive
Comment line
Reserved word in JavaScript for built-in functions or actions that may NOT be assigned to user variables or functions.
Tags
Keyword
Case Sensitive
Comment line
What is the HTML tag "href" for?
An html attribute that specifies the destination of a hyperlink in an HTML document.
It is an HTML attribute, usually in the header, that precedes the CSS information.
It is required in order to introduce JavaScript on a html document.
Indicates that the document is a hypertext markup language document.
What is the HTML tag "style" for?
An html attribute that specifies the destination of a hyperlink in an HTML document.
It is an HTML attribute, usually in the header, that precedes the CSS information.
It is required in order to introduce JavaScript on a html document.
Indicates that the document is a hypertext markup language document.
What is the HTML tag "script" for?
An html attribute that specifies the destination of a hyperlink in an HTML document.
It is an HTML attribute, usually in the header, that precedes the CSS information.
It is required in order to introduce JavaScript on a html document.
Indicates that the document is a hypertext markup language document.
What is the HTML tag "html" for?
An html attribute that specifies the destination of a hyperlink in an HTML document.
It is an HTML attribute, usually in the header, that precedes the CSS information.
It is required in order to introduce JavaScript on a html document.
Indicates that the document is a hypertext markup language document.
What is the HTML tag "head" for?
Designates an area of the document as the page header or top portion of the document.
Give the web browser page a name or title.
Largest heading size in an HTML page.
Smallest heading size in an HTML page.
What is the HTML tag "title" for?
Designates an area of the document as the page header or top portion of the document.
Give the web browser page a name or title.
Largest heading size in an HTML page.
Smallest heading size in an HTML page.
What is the HTML tag "h1" for?
Designates an area of the document as the page header or top portion of the document.
Give the web browser page a name or title.
Largest heading size in an HTML page.
Smallest heading size in an HTML page.
What is the HTML tag "h6" for?
Designates an area of the document as the page header or top portion of the document.
Give the web browser page a name or title.
Largest heading size in an HTML page.
Smallest heading size in an HTML page.
What is the HTML tag "a" for?
Creates a hyperlink to another web page.
Used to break or insert a line on a webpage.
Indicates that a paragraph will follow.
Designates an area of the document as the main body.
What is the HTML tag "br" for?
Creates a hyperlink to another web page.
Used to break or insert a line on a webpage.
Indicates that a paragraph will follow.
Designates an area of the document as the main body.
What is the HTML tag "p" for?
Creates a hyperlink to another web page.
Used to break or insert a line on a webpage.
Indicates that a paragraph will follow.
Designates an area of the document as the main body.
What is the HTML tag "body" for?
Creates a hyperlink to another web page.
Used to break or insert a line on a webpage.
Indicates that a paragraph will follow.
Designates an area of the document as the main body.
You would like your very stylish web page interact with users instead of just showing words and pictures. What should you add to it?
some HTML tags
some CSS tags
some JavaScript
some Scratch code
Which of the following characters indicates an end or closing tag in an HTML tag?
/
>
#
<end>
Which of the following tags are formatted correctly to add an image to an HTML document?
<img href="puppy.gif" alt="puppy">
<img src="puppy.gif" alt="puppy">
<image src="puppy.gif" alt="Puppy">
<img alt="puppy">puppy.gif</img>
Which is the proper way to write an h1 tag?
<h1>Hello</h1>
<h1>"Hello"
{h1}Hello{/h1}
<h1>Hello<h1>
Which of the following has a correct website structure?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
</html>
<head>
</head>
</body>
</body>
</html>
<head>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<!DOCTYPE html>
</html>
<body>
<head>
</head>
</html>
