After watching the video, you will create a web page to present information. The topic can be anything that you care about: basketball, a movie star, sea urchins, jigsaw puzzles . . . anything! Be sure that your web page includes the following elements:

At least five links (refer to the example above)
A description of each link (use the <p> tag to add your brief sentence description)
At least one image
A sound clip that loosely relates to your topic
To add a sound clip, use the following HTML code in your index.html file:Inside the quotation marks for src, you can paste the URL to a sound clip, or you can upload a music file to CodeSandbox and paste the filename inside.

For example, we are using a royalty-free sound called “Happy Rock” from We downloaded it as an MP3 file and uploaded it to CodeSandbox. Here is what our code would look like:

1 answer

Sure! Below is an example of a simple HTML web page presenting information about "Sea Urchins." This web page includes five links with descriptions, an image, and a sound clip related to the topic.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>All About Sea Urchins</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #e0f7fa;
            color: #00695c;
            margin: 0;
            padding: 20px;
        }
        h1 {
            text-align: center;
        }
        img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
        }
        .links {
            margin-top: 20px;
        }
        .links p {
            margin: 5px 0;
        }
    </style>
</head>
<body>
    <h1>All About Sea Urchins</h1>
    <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b6/Sea_urchin_2.jpg/640px-Sea_urchin_2.jpg" alt="Sea Urchin">
    
    <h2>Description</h2>
    <p>Sea urchins are small, spiny sea creatures that play a vital role in marine ecosystems.</p>

    <div class="links">
        <h2>Useful Links</h2>
        <a href="https://en.wikipedia.org/wiki/Sea_urchin" target="_blank">Wikipedia: Sea Urchin</a>
        <p>A comprehensive overview of sea urchins, including biology, habitat, and behavior.</p>

        <a href="https://ocean.concordia.ca/faq-sea-urchins/" target="_blank">Sea Urchin FAQ</a>
        <p>Frequently asked questions about sea urchins and their ecological significance.</p>

        <a href="https://www.youtube.com/watch?v=k3nmuO2_mdo" target="_blank">YouTube: Sea Urchin Exploration</a>
        <p>A video documentary showcasing various types of sea urchins in their natural habitat.</p>

        <a href="https://www.seaurchin.com/" target="_blank">Sea Urchin Sustainability</a>
        <p>A discussion on the sustainability of sea urchin harvesting and their culinary uses.</p>

        <a href="https://oceanconservancy.org/wildlife-videos/sea-urchins/" target="_blank">Ocean Conservancy: Sea Urchins</a>
        <p>Information on how sea urchins contribute to ocean health.</p>
    </div>

    <h2>Sound Clip</h2>
    <audio controls>
        <source src="https://www.soundhelix.com/examples/mp3/SoundHelix-Song-1.mp3" type="audio/mpeg">
        Your browser does not support the audio tag.
    </audio>

</body>
</html>

Explanation of the Code:

  1. HTML Structure: The code is structured using standard HTML elements like <html>, <head>, <body>, and so on.
  2. Head Information: The <head> section includes metadata, the title, and inline CSS for basic styling.
  3. Image: An image of a sea urchin is included with a relevant source link.
  4. Links: Five links are provided with corresponding descriptions. Each link opens in a new tab (target="_blank").
  5. Sound Clip: An audio clip is embedded using the <audio> tag with controls so the user can play/pause it. The sound file is linked from an external URL. You can replace it with your own URL if you'd like.

You can copy and paste this code into an HTML file and open it in a web browser to see how it looks!

Similar Questions
    1. answers icon 1 answer
  1. 8. What is a bibliography?* 1 point An explanation of why you chose your sources. A book about the topic you are writing about.
    1. answers icon 1 answer
    1. answers icon 2 answers
  2. Unit 2A: Research & Present PortfolioDue Tuesday, August 27th, 2024 Requirements: You will gather and analyze information to
    1. answers icon 1 answer
more similar questions