Web Science/Part1: Foundations of the web/Web content/HTML for web document structures/quiz

Da Wikiversità, l'apprendimento libero.

1

What is the outcome of the following html code?
<h2>Example Listing</h2>
<ol>
  <li>item</li>
  <li>item</li>
</ol>

Example Listing

  • item
  • item

Example Listing

First item
Second item

Example Listing

  1. item
  2. item

Example Listing

1. item 2. item

2

<table>
  <tr>
    <td>A</td>
    <td>B</td>
  </tr>
  <tr>
    <td>C</td>
    <td>D</td>
  </tr>
</table>
</table>

AC
BD
CA
DB
CD
AB
AB
CD

3 Map the following:

<strong>hello world</strong>
<em>hello world</em>
<code>hello world</code>
<sub>hello</sub><sup>world</sup>
helloworld
hello world
hello world
helloworld
hello world