Objective: Create a 404 error page using basic HTML tags.
Requirements:
- Use
<p>to display the error message. - Highlight "404" using the
<strong>tag. - Set a light red background using inline CSS or internal CSS.
- Set font size to at least 18px
Objective: Display an error message for a video file that cannot be loaded.
Requirements:
- Use the
<video>tag with a non-working source. - Below the video, show an error message inside a
<p>tag. - Use
<em>to emphasize the message. - Use CSS to change the background color and font size.
Output of P4
Objective: Simulate an audio load failure page.
Requirements:
- Use an
<audio>tag with a missing.mp3file. - Add a descriptive message using
<p>and<em>. - Set a light blue background color and increase the font size.
Objective: Create a page to show what happens when an image can't be loaded.
Requirements:
-
Use the
<img>tag with an invalid image URL. -
Display an icon or sad face using
<i>or emoji. -
Center the content and apply a light yellow background using CSS.
Objective: Create a page showing that a file (image or audio) is missing.
Requirements:
-
Use
<img>and<audio>with broken paths. -
Display a message using
<strong>,<i>, and<p>. -
Add basic CSS: background color, padding, and font style.
Output of P7


