NEW
Font size
WorksheetsHTML Test 01
Total questions: 47
Worksheet time: 23mins
Which is the proper way to write an h1 tag
<h1>Hello</h1>
<h1>"Hello
{h1}Hello{/h1}
<h1>Hello<h1>
What does a opening tag look like?
< >
</ >
<< >>
<
What does a closing tag look like?
< >
<\ >
</ >
<< >>
What should a HTML web page start with?
<b>
<li>
<html>
<start>
What should a HTML web page end with?
</html>
<head>
</end>
</body>
What does this tag stand for? <b>
bright
big
beautiful
bold
What symbol should you use to target an id in css?
.
+
id
#
What symbol should you use to target a class name in css?
#
()
.
class
What is the correct syntax to change the background color with css?
background-color: purple;
background-color = "purple";
backgroundcolor=orange
change-background-color: purple
TRUE OR FALSE: HTML is used to style web pages.
True
False
What is missing from this HTML skeleton?
<!DOCTYPE html>
<html>
<body>
</body>
</html>
<head></head>
<div></div>
<img></img>
<head>
What tag do you use to make a numbered list?
<list>
<ol>
<li>
<ul>
How do you change the font color with CSS?
font-color: green;
color: green;
change-font-color: green;
fontcolor=green;
Where should you put the link tag to connect your CSS and HTML file?
Between the <head> </head> in HTML
Between the <body> </body> in HTML
None of the above.
Which of the following is the correct CSS link tag?
<link rel="styles" href="stylesheet.css">
<link href="stylesheet">
<link rel="stylesheet" src="styles.css">
<link rel="stylesheet" href="styles.css">
Which of the following creates the smallest header?
<H2><./H2>
<H3></H3>
<H4></H4>
<H6></H6>
Which of these is another name for a web page address?
CSS
JAVA
URL
CNN
The universally accepted name for the first page on a website is
home.html
index.html
first.html
Who is considered by many to be the "Father of the World Wide Web" and the creator of HTML?"
Tim Berners-Lee
Tim Cook
Tim Sweeney
It is a global network of billions of computers and other electronic devices.
search engine
internet
web browser
all of the above
The problem with the Get method
form data is not encrypted
form data appears in the URL
it is not reliable
only part of the data is sent to the server
The action attribute of a form
tells how the information should be sent to the server.
tells what web page or script will process the form.
lets the user select from a set of options
is a button command that processes the form
In a form, <input type="text" ...>
cannot be set to "required"
is not valid
will accept multiple lines of characters.
will accept only a single line of characters.
In a form, a drop-down list of options
begins with a select tag followed by a list of option tags.
begins with an option tag followed by a list of select tags.
begins with a select tag followed by a list of datalist tags.
begins with a datalist tag followed by a let of option tags.
To submit a form for processing, use
<input type="button" method="submit">
<button type="submit"></button>
<input type="submit">Submit</input>
<input type="submit" value="Submit">
