What is the correct way to include a stylesheet named style.css in the head of your document

What is the correct way to include a stylesheet named style.css in the head of your document

[ ]<img src="q24.jpg" alt="Mini-cheeseburgers."> <p>These mini cheeseburgers are served on a freshly baked pretzel bun with lettuce, tomato, avocado, and your choice of cheese.</p> [ ]<img src="q24.jpg" alt="Mini-cheeseburgers."> <caption>These mini cheeseburgers are served on a freshly baked pretzel bun with lettuce, tomato, avocado, and your choice of cheese.</caption> [ ]<figure> <img src="q24.jpg" alt="Mini-cheeseburgers."> <caption>These mini cheeseburgers are served on a freshly baked pretzel bun with lettuce, tomato, avocado, and your choice of cheese.</caption> </figure> [x]<figure> <img src="q24.jpg" alt="Mini-cheeseburgers."> <figcaption>These mini cheeseburgers are served on a freshly baked pretzel bun with lettuce, tomato, avocado, and your choice of cheese.</figcaption> </figure>

<table> <tr> <td>Cell 1</td> <td>Cell 2</td> </tr> </table> [ ] <td>Cell 2</td></tr></table> <table> <tr> <td>Cell A</td> <td>Cell B</td> </tr> </table> [ ] <td>Cell 2</td> <table> <tr> <td>Cell A</td> <td>Cell B</td> </tr> </table> </tr> [x] <td>Cell 2 <table> <tr> <td>Cell A</td> <td>Cell B</td> </tr> </table> </td> [ ] <td>Cell 1</td> <table> <tr> <td>Cell A</td> <td>Cell B</td> </tr> </table> <td>Cell 2</td>

<script defer src="myscript.js"></script>

<script async src="myscript.js"></script>

[ ] <caption> provides captions for <audio>, <video>, <img>, and <table>. [ ] <caption> provides captions for <img>, <audio>, and <video>. [x] <caption> provides captions to <table>. [ ] <caption> provides captions for <audio>, <video>, and <table>.

[ ] <a href="tel">802-555-1212</a> [ ] <a href="phone:802-555-1212">Call me</a> [ ] <a href="phone">802-555-1212</a> [x] <a href="tel:802-555-1212">Call me</a>

[ ] <link style="style.css"> [ ] <style src="style.css- [ ]></style> [ ] <style link="style.css"> [x] <link rel="stylesheet" href="style.css">

On July 21, 1969, Neil Armstrong said, "That's one small step for man, one giant leap for mankind."

[x] <p>On <time datetime="1969-07-21">July 21, 1969</time>, Neil Armstrong said, <q cite="https://www.hq.nasa.gov/alsj/a11/a11.step.html">That's one small step for man, one giant leap for mankind.</q></p> [ ] <p>On July 21, 1969, Neil Armstrong said, <q cite="https://www.hq.nasa.gov/alsj/a11/a11.step.html">"That's one small step for man, one giant leap for mankind."</q></p> [ ] <p>On July 21, 1969, Neil Armstrong said, <q>"That's one small step for man, one giant leap for mankind."</q></p> [ ] <p>On <time datetime="07-21-1969">July 21, 1969</time>, Neil Armstrong said, <q cite="https://www.hq.nasa.gov/alsj/a11/a11.step.html">That's one small step for man, one giant leap for mankind.</q></p>

What is the correct way to include a stylesheet named style.css in the head of your document

Bulleted list with one bullet (Office Supplies), two subbullets (Stapler and Paper clips), another bullet (Groceries), and one subbullet (Milk)

[x] <ul> <li>Office Supplies</li> <ul> <li>Stapler</li> <li>Paper clips</li> </ul> <li>Groceries</li> <ul> <li>Milk</li> </ul> </ul> [ ] <ul> <li>Office Supplies <ol style="circle"> <li>Stapler</li> <li>Paper clips</li> </ol> </li> <li>Groceries <ol style="circle"> <li>Milk</li> </ol> </li> </ul> [ ] <ul> <li>Office Supplies</li> <li>Stapler</li> <li>Paper clips</li> <li>Groceries</li> <li>Milk</li> </ul> [ ] <ul> <li>Office Supplies <ul> <li>Stapler</li> <li>Paper clips</li> </ul> </li> <li>Groceries <ul> <li>Milk</li> </ul> </li> </ul>

[ ] <fieldset> <label>Options</label> <input id="choice-1" name="options" type="radio" /> <label for="choice-1">Choice 1</label> <input id="choice-2" name="options" type="radio" /> <label for="choice-2">Choice 2</label> <input id="choice-3" name="options" type="radio" /> <label for="choice-3">Choice 3</label> </fieldset> [ ] <p>Make a choice:</p> <input id="choices" name="example" /> <datalist value="choices"> <option value="Choice 1"> <option value="Choice 2"> <option value="Choice 3"> </datalist> [ ] <label for="example">Make a choice:</label> <datalist id="example"> <option value="Choice 1"> <option value="Choice 2"> <option value="Choice 3"> </datalist> [x] <fieldset> <legend>Options</legend> <input id="choice-1" name="options" type="radio" /> <label for="choice-1">Choice 1</label> <input id="choice-2" name="options" type="radio" /> <label for="choice-2">Choice 2</label> <input id="choice-3" name="options" type="radio" /> <label for="choice-3">Choice 3</label> </fieldset>

[ ] <area> <embed> <strong>

[ ] <link> <meta> <title>

[ ] <input> <br> <p>

[x] <wbr> <base> <source>

Hmm, Mary thought. I wonder how I should mark up this sentence.

<base href="http://www.linkedin.com/dir/">

[ ] page.html

[ ] dir/page.html

[ ] http://www.linkedin.com/page.html

[x] http://www.linkedin.com/dir/page.html

<noscript>Sample Text</noscript>

<p lang="en-GB">Welcome to our wonderful website.</p>

<a href="http://www.linkedin.com" target="_blank">Visit site</a>

<nav><ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a></li> <li><a href="#">Link 3</a></li> </ul></nav> [ ] <ul><nav> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a> <ul><nav> <li><a href="#">Link 2a</a></li> </nav></ul></li> <li><a href="#">Link 3</a></li> </nav></ul> [ ] <nav><ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a> <ul> <li><a href="#">Link 2a</a></li> </ul></li> <li><a href="#">Link 3</a></li> </ul></nav> [x] <nav><ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a></li> <ul> <li><a href="#">Link 2a</a></li> </ul> <li><a href="#">Link 3</a></li> </ul></nav> [ ] <nav><ul> <li><a href="#">Link 1</a></li> <li><a href="#">Link 2</a></li> <nav><ul> <li><a href="#">Link 2a</a></li> </ul></nav> <li><a href="#">Link 3</a></li> </ul></nav>

What is the correct way to include a stylesheet named style.css in the head of your document

[ ] <a href="../../info.html">See information</a> [ ] <a href="../info.html">See information</a> [x] <a href="../work/info.html">See information</a> [ ] <a href="info.html">See information</a>

<tr>Cell 1</tr> <td>Cell 2</td> <caption>A table</caption> </table> [ ] <caption>A table</caption> <table> <tr> <td>Cell 1</td> <td>Cell 2</td> </tr> </table> [ ] <table> <tr> <td>Cell 1</td> <td>Cell 2</td> </tr> <caption>A table</caption> </table> [x] <table> <caption>A table</caption> <tr> <td>Cell 1</td> <td>Cell 2</td> </tr> </table> [ ] <caption>A table</caption> <table> <td> <tr>Cell 1</tr> <tr>Cell 2</tr> </td> </table>

[x] <img src="cubism.jpg" alt='Version of "Whistler\'s Mother" in cubist style'> [ ] <img src="cubism.jpg" alt="Version of ""Whistler's Mother"" in cubist style"> [ ] <img src="cubism.jpg" alt="Version of "Whistler's Mother" in cubist style"> [ ] <img src="cubism.jpg" alt="Version of \"Whistler's Mother\" in cubist style">

[ ] <nav> <ol> <li><a href="index.html">Home</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html">Contact</a></li> </ol> </nav> [ ] <p> <a href="index.html">Home</a> | <a href="about.html">About</a> | <a href="contact.html">Contact</a> </p> [x] <nav> <ul> <li><a href="index.html">Home</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> [ ] <nav> <a href="index.html">Home</a> | <a href="about.html">About</a> | <a href="contact.html">Contact</a> </nav>

[ ] <h4>Mailing Address</h4> <p><em> 6410 Via Real <br> Carpinteria, CA 93013<br> <a href="mailto:"></a> <em></p> [ ] <p><strong>Mailing Address</strong></p> <p><em> 6410 Via Real <br> Carpinteria, CA 93013<br> <a href="mailto:"></a> <em></p> [x] <h4>Mailing Address</h4> <address> 6410 Via Real <br> Carpinteria, CA 93013<br> <a href="mailto:"></a> </address> [ ] <h4><strong>Mailing Address</strong></h4> <address><em> 6410 Via Real <br> Carpinteria, CA 93013<br> <a href="mailto:"></a> <em></address>

<audio autoplay loop src="sound.mp3" type="audio/mpeg"></audio>

  • as children of <body>, <article>, <aside>, and <section> tags
  • as children of <body>, <article>, and <section> tags
  • as children of <body>, <article>, <aside>, <nav>, and <section> tags
  • as children of <body>, <article>, <table>, and <section> tags

Credit:

(⬆ Back to Top of the page)


Page 2

You can’t perform that action at this time.

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.