NEW
Font size
WorksheetsHTML and CSS Basic Concepts
Total questions: 26
Worksheet time: 26mins
Software that is used to translate code to readable web pages is a browser like Google Chrome and Firefox
true
false
Which of the following is an opening HTML tag?
</html>
<<html>>
<html>
<html/>
Which one of the following is a closing HTML tag?
<html />
</html>
<</html>>
<html>
What is the <p> tag used for?
Defines a paragraph.
Makes the text purple.
It pushes the text to the right.
Prints the webpage.
Which character is used to indicate an HTML end tag?
*
<
/
^
To create the largest possible "Heading" in HTML, which tag is correct?
<HeadingLarge>
<Head>
<h1>
<h+>
the <a> tag
Defines an article tag
Defines an HTML link
Defines a line break
Defines the area
Which line of code correctly creates a link to Piskel's website?
<a ref=https://www.piskelapp.com/>Visit Piskel
<href=https://www.piskelapp.com/>Visit Piskel<a>
<a "https://www.piskelapp.com/">
<a href="https://www.piskelapp.com/">Visit Piskel</a>
In the element <para id="demo">change me</p> the id="demo" is the
tag
css style
attribute
selector
How do you divide your webpage?
<d></d>
<divide></divide>
<div></div>
<section></section>
You should save HTML files with which file extension?
.htm
.index
.webpage
.html
TRUE OR FALSE: CSS is used to style web pages
True
False
What does CSS stand for?
Creative Style Sheets
Cascading Style Sheets
Colorful Style Spread
Computer Style Spread
p {color: red;}
p {color: red;}
Which one is the correct syntax for CSS?
property {selector : value}
value {property : selector}
selector {value : property}
selector { property : value}
