FOUNDATIONS (PNVO) WITH COMPLETE
SOLUTION ALREADY GRADED A++,,2024
Use the given text to answer the following question:
The weather is hot. (all in bold)
Which code snippet should be used to create this content? Choose 2 answers.
1.<p><strong>The weather is hot.</strong></p>
2.<p><em>The weather is hot.</em></p>
3.<p><i>The weather is hot.</i></p>
4.<p><mark>The weather is hot.</mark></p>
5.<p><b>The weather is hot.</b></p> 1&5
Use the given text to answer the following question:
I love you ( I love(in bold) you
Which code snippet should be used to create this content?
<p>I <strong>love</strong> you</p>
<p>I <em>love</em> you</p>
<p>I <h1>love</h1> you</p>
<p>I <span>love</span> you</p> 1
<p>I <strong>love</strong> you</p>
Use the given text to answer the following question:The mother told her child, "Get ready for
school." Which code snippet should be used to create this content?
<p>The mother told her child, <q>Get ready for school.</q></p>
<p>The mother told her child, <b>Get ready for school.</b></p>
<p>The mother told her child, <mark>Get ready for school.</mark></p>
<p>The mother told her child, <cite>Get ready for school.</cite></p> 1
<p>The mother told her child, <q>Get ready for school.</q></p>
Use the given text to answer the following question:
The Empire State Building 20 W 34th St New York, NY 10001
Which code snippet should be used to create this content?
<p>The Empire State Building<br> 20 W 34th St<br> New York, NY 10001</p>
<p>The Empire State Building 20 W 34th St New York, NY 10001</p>
<p>The Empire State Building<b> 20 W 34th St <b> New York, NY 10001</p>
<p>The Empire State Building<div> 20 W 34th St <div> New York, NY 10001</p> 1
<p>The Empire State Building<br> 20 W 34th St<br> New York, NY 10001</p>
,Use the given text to answer the following question:
An article about html
It explains how headings work!
An article about html is larger font, next line is smaller
Which code snippet should be used to create this content?
<html>
<head>
<title>An article about html</title>
</head>
<body>
<p>It explains how headings work!</p>
</body>
</html>
<html>
<h1>
<title>An article about html</title>
</h1>
<body>
<p>It explains how headings work!</p>
</body>
</html>
<html>
<head>
<title>An article about html</title>
</head>
<body>
<h1>An article about html</h1>
<p>It explains how headings work!</p>
</body>
</html>
<html>
<h1>
<title>An article about html</title>
</h1>
<body>
<title>An article about html</title>
<p>It explains how headings work!</p>
</body>
</html> 3
<html>
, <head>
<title>An article about html</title>
</head>
<body>
<h1>An article about html</h1>
<p>It explains how headings work!</p>
</body>
</html>
Which accessibility solution should be used for users with hearing impairment?
Easily read fonts
Textual description of images
Transcript of audio
Screen reading conversion Transcript of audio
Use the given code snippet to answer the following question:
<ol> <li>apple</li> <li>banana</li> <li>cherry</li> <li>date</li></ol>
How will this code be displayed in a browser? 1. 2. 3. 4. , not bullets - it is ordered list
Which set of form elements allows the selection of only one item from the group?
<input type="radio" name="choose" value="1" id="choice1">
<label for="choice1">1</label>
<input type="radio" name="choose" value="2" id="choice2">
<label for="choice2">2</label>
<input type="radio" name="choose" value="3" id="choice3">
<label for="choice3">3</label>
<input type="checkbox" name="choose" value="1" id="choice1">
<label for="choice1">1</label>
<input type="checkbox" name="choose" value="2" id="choice2">
<label for="choice2">2</label>
<input type="checkbox" name="choose" value="3" id="choice3">
<label for="choice3">3</label>
<select name="choose" multiple>
<option value="1" id="choice1">1</option>
<option value="2" id="choice2">2</option>
<option value="3" id="choice3">3</option</select>
<input type="number" name="choose" value="1" id="choice1">
<label for="choice1">1</label>
<input type="number" name="choose" value="2" 1.
<input type="radio" name="choose" value="1" id="choice1"><label
for="choice1">1</label><input type="radio" name="choose" value="2" id="choice2"><label
for="choice2">2</label>
Use the given code to answer the following question: