Linkiden Flashcards
What is the purpose of the <track> tag, and when should it be used?
The <track> tag is used for specifying subtitles. It is typically applied as a child of the <audio> and <video> tags.
In HTML5, which tag or tags embed a webpage inside of a webpage
<frame>
What are the best examples of void elements
<wbr><base><source>
The “value” attribute is associated with which set of tags?
<li><input><option>
What is the best way to apply bold styling to text
<strong>
When is the <link> tag used?
When linking style sheets and favicons
With which tags is the source element associated?
picture audio and video tags
What should fill the two blanks in the HTML code below?
<address ______ _____>
<span itemprop=”streetAddress”>6410 Via Real</span><br />
<span itemprop=”addressLocality”>Carpinteria</span>,
<span itemprop=”addressRegion”>CA</span>
<span itemprop=”addressCode”>93013</span>
</address>
itemsope itemtype=”http://schema.org/PostalAddress”
When should you use the <aside> element?
when the content can be removed without detracting from the page’s message
With which tags is the <source> element associated?
<picture>, <audio>, and <video>
When should you use <ol> and <ul> elements?
Use <ul> when you want a bulleted list and <ol> when you want a numbered list.
how to properly code an open by default dropdown
Parmesan Deviled Eggs
<p>
These delectable little bites are made with organic eggs, fresh Parmesan, and chopped pine nuts.
</p>
What is the purpose of the <samp> element?</samp>
It identifies sample output from a computer program
When should you use <ol> and </ol><ul> elements</ul>
Use <ul> when you want a bulleted list and </ul><ol> when you want a numbered list </ol>
What is the correct markup for alt attribute of an image?
<img></img>
What is the difference between teh <div> and the <span> tags</span></div>
<div> is used where a generic block-level tag is needed, while <span> is used where a generic inline tag is needed</span></div>
What should fill the blank in the HTML code below
enctype
What should fill the blank in this HTML code?
<a>Visita Yahoo</a>
es-es
In the code below, what is the purpose of the id attribute?
<p>Be careful when installing this product.</p>
It establishes that id is a unique identifier in the document, used for styling CSS, scripting, and linking within a webpage.
What is the best semantic markup for the sentence shown?
<p>
On July 21, 1969, Neil Armstrong said,
One small step for man, one giant leap for mankind.
</p>
What should fill the blank in this HTML code?
<a>Visita Yahoo</a>
es-es
What is the best way to code nav links
unordered list in a nav element
What is the best way to code three choices within a form so that the user can select only one item?
Make a choice:
What is the <hr>tag typically used for?
It designates a topic shift within a section at the paragraph level.
What does the code shown below accomplish?
<img></img>
It displays image1.jpg at 1000px and higher and image2.jpg at 750px and higher, image3.jpg is a default in case is not supported.