Solved
HTML colors can be defined using a HEX value, The HEX value combines RED, GREEN, and
BLUE to make these colors. What is the correct order these colors are placed in? Correct
Ans-#RRGGBB, A good acronym is the fake name Roy G. Biv
Which HTML element defines a thematic break in a page(often displayed as a horizontal rule)?
Correct Ans-<hr> - creates a horizontal line on the page
Which HTML attribute for video and audio files is used to include play, pause, and volume
buttons? Correct Ans-controls
What is a Web Worker? Correct Ans-A Javascript file running in the background, without
affecting the performance of the webpage
Which HTML element defines marked text? Correct Ans-<mark>
True or False: SVG graphics lose quality if they are resized or zoomed? Correct Ans-false
In HTML, what are the possible attributes to specify restrictions for the input type="number"
Correct Ans-step
value
min
, max
What elements are used to define a description list? Correct Ans-<dl>, <dt>, and <dd>
How do you create a link to a section inside the same HTML document? Correct Ans-<a
href="#Section11> Go to Section 11</a>
This links to wherever the Section11 id link is on the page.
How can you a bookmark in an HTML document (so that you can add a link to that place in the
document?) Correct Ans-add an id to the element
Ex: <h3 id="resources-section">Resources</h3>
This creates a bookmark for the resources section so that you can link to it later (<a
href="#resources-section">Link to Resources Bookmark</a>)
What does HTML stand for? Correct Ans-Hypertext Markup Language
What does CSS stand for? Correct Ans-Cascading Style Sheets
Who is making the Web standards? Correct Ans-World Wide Web Consortium