teaching-web Teaching Web at Manchester Met

List all resources

An interesting list of coding errors

HTML

Attributes

Working with tags

Specific tags

<dl>
    <dt>Term</dt>
    <dd>
    <p>Some text</p>
        <ul>
        <li>Item</li>
        <li>Item</li>
        </ul>
    </dd>
</dl>

and make sure you have <dt>s and <dd>s inside your <dl>. Make sure you have a <dl> before you start doing <dt>s and <dd>s.

<tr><td>Item</td><td>Item</td></tr>

CSS

  • content

  • you can just do
    
  • content
  • * The pattern is:
    

    selector { property: value; } p { color: red;} ``` So missing out the : or the ; will cause problems. Forgetting both or one of the curly brackets will cause problems.