NEW
Font size
WorksheetsCSS QUIZIZ
Total questions: 16
Worksheet time: 12mins
Which of these tags would display the largest text?
<p>
<h6>
<h2>
<h4>
What is the difference between HTML and CSS?
CSS is one type of HTML
HTML gives a webpage structure. CSS provides styling.
CSS structures a webpage. HTML strictly provides styling.
There is no difference.
How can you make a un order list?
<list>
<ol>
<dl>
<ul>
You should save HTML files with which file extension?
.htm
.index
.webpage
.html
What does CSS stand for?
Creative Style Sheets
Cascading Style Sheets
Colorful Style Spread
Computer Style Spread
Within which tag does the information for a web page appear?
<head>
<title>
<body>
<html>
Which tag is used to enclose a paragraph?
<text>
<paragraph>
<div>
<p>
What is used to signify a closing tag?
:
/
*
$
Which model includes margin, border, padding, and content?
CSS Box model
CSS3 Flexbox Box model
CSS3 Grid Layout model
CSS Grid Template Layout Module
What is the area between the content and the border?
margin
height
width
padding
Padding...
pushes the content away from the border of the element
pushes the element away from other elements
Makes the element invisible
Make the element visible.
The HTML code for adding a picture begins with the ___________ element.
src
scr
img
png
Which is the value in this CSS rule?p {color: red;}
p
color
red
{}
What coding do the tags: <ul> & <li> represent?
Ordered List with list items
Un-Ordered List with list items
Definition without list items
Link with list items
For <img src="#"> to display an image, what must you replace # with?
an image URL
an image anchor tag
the image vector
an image file size
Which is correct CSS syntax?
{ body; color=black;}
body: color= black
body {color:black;}
(body color is black)
