Quiz HTML CSS
Quiz HTML CSS
Correct Answer!
16. What is the correct HTML for making a text input field?
You answered:
<input type="text">
Correct Answer!
<textarea>
Correct Answer!
HTML5 QUIZ
1. What is the previous version of HTML, prior to HTML5?
You answered:
HTML 4.01
Correct Answer!
13. In HTML5, you can embed SVG elements directly into an HTML page.
You answered:
True
Correct Answer!
Correct Answer!
17. In HTML5, which attribute is used to specify that an input field must
be filled out?
You answered:
required
Correct Answer!
19. Which input type defines a week and year control (no time zone)?
You answered:
week
Correct Answer!
CSS QUIZ
1. What does CSS stand for?
You answered:
Cascading Style Sheets
Correct Answer!
10. Which CSS property is used to change the text color of an element?
You answered:
color
Correct Answer!
12. What is the correct CSS syntax for making all the <p> elements
bold?
You answered:
p {font-weight:bold;}
Correct Answer!
14. How do you make each word in a text start with a capital letter?
You answered:
text-transform:capitalize
Correct Answer!
19. When using the padding property; are you allowed to use negative
values?
You answered:
No
Correct Answer!
20. How do you make a list that lists its items with squares?
You answered:
list-style-type: square;
Correct Answer!