NEW
Font size
WorksheetsSKIT HTML, CSS QUIZ
Total questions: 20
Worksheet time: 8mins
Which of these elements are all <table> elements?
<thead> <body> <tr>
<table> <tr> <tt>
<table> <tr> <td>
<table> <head> <tr>
How can you make a numbered list in HTML?
<list>
<li>
<ul>
<ol>
What is the correct HTML for making a checkbox?
<checkbox>
<input type="checkbox">
<input href="checkbox">
<input> type=check </input>
What is the correct HTML for making a text input field?
<input type="textfield">
<input type="field">
<text>type="text"</text>
<input type="text">
What is the correct HTML for making a drop-down list?
<select>
<list>
<input type="select">
<input type="list">
What is the correct HTML for inserting an image?
<img src="logo.png" alt="Logo">
<img href="image.gif" alt="MyImage"
<image src="logo.png" alt="Logo">
<img alt="MyImage">image.gif</img>
Apart from <b> tag, what other tag makes text bold ?
<fat>
<black>
<emp>
<strong>
Tags and texts that are not directly displayed on the page are written in _____ section.
<head>
<title>
<html>
<body>
Which of the following tags do not require a terminator/end tag?
<ul>
<br>
<b>
none of the above
_____ tag is used before beginning of the paragraph text
<hr>
<textarea>
<p>
<text>
How do you select all p elements inside a div element?
div p
div.p
div + p
* p
How do you select elements with class name "container"?
#container
@container
.container
container
Which property is used to create left margin of an element?
margin: left;
left-margin
left
margin-left
How do you select an element with id "half-width"?
.half-width
#half-width
@half-width
half-width
How do you make the text bold?
font: bold;
text-style: bold;
font-weight: bold;
text: bold;
How do you make each word in a text start with a capital letter?
font-transform: capitalize;
text-style: capitalize;
font-style: capitalize;
text-transform: capitalize;
How do you display hyperlinks without an underline?
a {text-style: no-underline;}
a {text-decoration: none;}
div {decoration: none;}
a {text-style: none;}
Which CSS property controls the text size?
font-size
font-weight
text-weight
text-size
Which CSS property is used to change the text color of an element?
text-color
font-color
color
background-color
Which is the correct CSS syntax?
body {color = black;}
body {color: black;}
{body-color: black;}
body-color = black;
