Lecture 3
Objective: Apply semantic tags to create a basic structured webpage.
Instructions:
- Create a webpage with the following sections using semantic tags:
<header>
,<main>
, and<footer>
. - In the
<header>
, include a title and brief introduction about yourself. - Within the
<main>
, use the<article>
tag to write a short paragraph about a hobby or interest. - Conclude with a
<footer>
containing a fictional email address.
Objective: Integrate basic multimedia elements in HTML.
Instructions:
- Create a simple webpage.
- Embed an image related to your hobby or interest using the
<img>
tag. Ensure it has an alt description. - Below the image, embed a short video or audio clip (you can use placeholders). Include playback controls using the controls attribute.
Objective: Practice using emphasis and formatting tags in HTML.
Instructions:
- Write a brief paragraph about a recent event or news story.
- Use tags like
<strong>
,<em>
, and<mark>
to emphasize certain keywords or phrases. - Include a small list of three key points using ordered or unordered list tags.