Skip to content

Exercises (HTML): Webmaking with HTML and CSS

Jonathan edited this page Jun 19, 2023 · 6 revisions

Exercise 1: Adding content elements

Instructions

  1. Together: Review the text in the element of index.html. Decide on its structure in terms of headings, paragraphs, and lists.
  2. Add HTML content elements <h1>, <h2>, <p>, <ul>, and <li> to the content, where appropriate. Try to add at least one of each element before repeating elements.

Hints

`h1` ```html

Level 1 heading

```
```html

Level 2 heading

```
```html

Paragraph or other text...

```
```html
  • First list item
  • Second list item

Clone this wiki locally