Font size
WorksheetsHTML - CSS quiz 1
Total questions: 20
Worksheet time: 17mins
One characteristic that corresponds to HTML could be...
Uses tags to define elements within a document
Uses tags which are used mostly in pairs.
Describes how the text will be displayed on the webpage
All are correct
The word Cascading in CSS means...
The properties and values can be applied simultaneously affecting different pages.
It can be used only for internal process styling the page.
it is mainly used to stylize the page, changing all the properties.
cascading refers the changes are applied considering an specific order.
Which CSS type style (inline - external - internal) is representing the previous image?
(a)
Within which tags on the HTML page is the content of the page located?
<head></head>
<html></html>
<style></style>
<body></body>
Which image presents the basic tags required to begin creating a webpage?
What is the correct line in HTML for creating a hyperlink to an external site?
<a href="http://.....">selected site</a>
<a name="http://...">selected site</a>
<a url="http://...">selected site</a>
<a>http://selected site</a>
Choose the image that edit a paragraph using inline style
Observe the next HTML line code: <a href="home.html"><img src="home.png" height="100" weigth="100">HOME</a>. Choose what will be the expected result
An image that acts as a link that goes a page called HOME.
A button that acts as a link that opens an image called HOME.
An link that opens an image called HOME.
A link that allows to open a page called HOME.
What is the correct HTML element for inserting an image that is saved locally (USB - PC)?
<img href="nasa.jpg" alt="NASA";>
<image src="images/nasa.jpg" height="100" width="100">
<img src="images/nasa.jpg" height="100" width="100">
<img alt=Myimageg">image.gif</img">
To obtain the previous result the correct block of code would be...
In CSS language the option external style is used for...
To create the previous list the correct block would be...
Using CSS language, create a selector for styling a paragraph, then add it the next properties and values: font-family: Arial, font-size: 20px, color: blue, text-align: justify.
Observe the HTML code used to add a paragraph in your page. Mention the mistakes that you identified
After using the previous line code the result on the screen will be...
<img src="star.png" alt= "a five printedyellow star" weight="200" height="300"> which is the tag in the previous HTML line code?
src="star.png"
<img>
alt=" "
weight=" " height=" "
In the previous CSS code used for styling a subheading which line of code would you change to make the subheading display on the right-hand side?
line 5
line 2
line 6
none is correct
These elements select the HTML element(s) you want to style in a webpage
tags
properties
selectors
values
To obtain the previous table the correct HTML code should be...
What is the most effective process to add background-color to the table and obtain the presented result?
