Page 1 of 1

PLEASE ANSWER ALL THE QUESTIONS: QUESTION 1 What is the purpose of listing multiple font families in a style? It display

Posted: Tue Jul 12, 2022 8:16 am
by answerhappygod
PLEASE ANSWER ALL THE QUESTIONS:
QUESTION 1
What is the purpose of listing multiple font families in astyle?
It displays the page in all font families listed and the usercan change the desired font with a drop down list.
The browser displays the page using the first font in the listthat matches what is available on the computer gracefully fallingback on a known font when the ideal font isn't found.
You can't list multiple font families in a style command. If the selected font isn't available the browser defaults to comicsans.
There is no font-families section. This information shouldbe in the font-style entry and only one font name is allowed inHTML5
2 points
QUESTION 2
What are the following elements?
<header>, <nav>, <section>, <aside>,<footer>
HTML 5 Semantic Elements
HTML 4 Semantic Elements
HTML 5 Style Elements
HTML 4+ Symbolic Elements
2 points
QUESTION 3
What does the <em> tag do?
Displays the text in Bold for emphasis.
It sets the edge margin for the page.
Displays the text in italics
It scales all photos inside the tag to equal measure betweenthem for spacing.
2 points
QUESTION 4
What is the advantage of using Stylesheets?
They make our code smaller by reusing components from otherdevelopers
They allow us to separate the visual style of our web page fromthe html code giving greater control over the appearanceof our pages.
They allow our code to flow easily (Cascade) from one web pageto another.
They allow us to highlight all of our html code inblue to make it easier to work with the code inside of a texteditor.
2 points
QUESTION 5
Which of the following style commands allows you to set a fontto normal, bold, bolder or lighter?
font-weight
font-type
font-style
font-thickness
2 points
QUESTION 6
Which of the following is not a type of HTML List?
Ordered List
Cascading List
Unordered List
Definition List
2 points
QUESTION 7
Which of the following is a valid style for the paragraphtag
Paragraph {
p.font.size=p;
align center
}
<Style:: p: FS=9, TA=center>
p {
font-size: 9 pt;
text-align: center;
}
None of the above are valid.
2 points
QUESTION 8
What best describes attributes?
Attributes are statistical information about a web page such asits height, width, background color, etc.
Each html element has an attribute tag to set it todisplay or be hidden.
Special code words used inside of an HTML tag to control what itdoes
A special section inside of the header tag to control pagelayout functions.
2 points
QUESTION 9
Which of the following is a valid CSS display property?
display:tiered
display:ASCII
display:block;
display:hidden
2 points
QUESTION 10
If you wanted to place all of your style code in a separate filefrom your html code which tag would you use?
<resource type="css" filename="filename.css">
This cannot be done in HTML. Style commands must beincluded in the HTML file only.
<link href="filename.css" class="stylesheet">
<linkrel="stylesheet" type="text/css" href="filename.css">