-
Notifications
You must be signed in to change notification settings - Fork 0
Exercises (HTML): Webmaking with HTML and CSS
Jonathan edited this page Jun 19, 2023
·
6 revisions
-
Together: Review the text in the
bodyelement ofindex.html. Decide on its structure in terms of headings, paragraphs, and lists. - Add HTML content elements
h1,h2,p,ul, andlito the content, where appropriate. Try to add at least one of each element before repeating elements.
- Elements are made using tags, which are indicated by angle brackets, i.e.
<and>. - Element tags usually come in pairs, e.g.:
<h1>and</h1>.