NEW
Font size
Worksheets01 - 06 handout
Total questions: 35
Worksheet time: 18mins
What does HTML Stand for?
Hyperlinks and Text Markup Language
Home Tool Markup Language
Hyper Text Markup Language
Choose the correct HTML element for the largest heading
<h1>
<head>
<h6>
What is the correct HTML element for inserting a line break?
<br>
<lb>
<break>
What is the correct HTML for adding a background color?
<background> yellow</background>
<body bg = "Yellow">
<body style = "background-color: yellow;">
Choose the correct HTML element to define important text
<b>
<important>
<strong>
<i>
Choose the correct HTML element to define emphasized text
<i>
<italic>
<em>
Which character is used to indicate an end tag?
*
^
<
/
Which of this elements are all <table> elements?
<thead><head><tr>
<table><head><tfoot>
<table><tr><td>
<table><tr><tt>
Inline element are normally displayed without starting a new line.
True
False
How can you make a numbered list?
<ul>
<dl>
<ol>
<list>
How can you make a bulleted list?
<ul>
<dl>
<ol>
<list>
What is the correct HTML for making a checkbox?
<checkbox>
<check>
<input type = "check">
<input type = "checkbox">
What is the correct HTML for making a text input field?
<textfield>
<textinput type = "text">
<input type ="text'>
<input type ="textfield">
What is the correct HTML for inserting an image?
<img href="image.gif" alt="MyImage">
<img src="image.gif" alt="MyImage">
<image src="image.gif" alt="MyImage">
<img alt="MyImage">image.gif</img>
What is the correct HTML for inserting an image?
<img href="image.gif" alt="MyImage">
<img src="image.gif" alt="MyImage">
<image src="image.gif" alt="MyImage">
<img alt="MyImage">image.gif</img>
HTML comments starts with <!-- and end with -- >
True
False
Block elements are normally displayed without starting a new line
True
False
Which HTML element defines the title of the document?
<title>
<head>
<meta>
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
longdesc
src
title
alt
Which doctype is correct for HTML5?
<!DOCTYPE HTML5>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0//EN" "http://www.w3.org/TR/html5/strict.dtd">
<!DOCTYPE html>
in HTML, you can embed SVG elements directly into an HTML page.
True
False
in HTML, which attribute is used to specify that an input field must be filled out?
placeholder
formvalidate
validate
required
Which HTML element defines navigation links?
<navigation>
<nav>
<navigate>
in HTML, what does the <aside> element define?
The ASCII character-set; to send information between computers on the Internet
A navigation list to be shown at the left side of the page
Content aside from the page content
Which HTML element is used to specify a header for a document or section?
<top>
<head>
<header>
<section>
What does CSS stand for?
Computer Style Sheets
Creative Style Sheets
Colorful Style Sheets
Cascading Style Sheets
What is the correct HTML for referring to an external style sheet?
<link rel="stylesheet" type="text/css" href="mystyle.css">
<stylesheet>mystyle.css</stylesheet>
<style src="mystyle.css">
Which HTML attribute is used to define inline styles?
class
font
styles
style
Which is the correct CSS syntax?
{body:color=black;}
body:color=black;
body {color: black;}
{body;color:black;}
Which property is used to change the background color?
color
bgcolor
background-color
How do you insert a comment in a CSS file?
// this is a comment
' this is a comment
/* this is a comment */
// this is a comment //
Which CSS property is used to change the text color of an element?
color
fgcolor
text-color
Which CSS property controls the text size?
text-size
font-style
font-size
text-style
How do you select an element with id 'demo'?
demo
.demo
*demo
#demo
How do you select elements with class name 'test'?
#test
test
*test
.test
