UNC BACS 200

Web Pages with HTML/CSS

Logo

Project 3 - Amuse Me

GOALS

Publish a summary of amusing things on the internet

Description

The purpose of this project is to build a simple page that tells about things that you find amusing.

Select three pages on the internet that amuse you and create a page that contains links to the content. On your page, add a heading, description, and hyperlink to the original material. Also include some image on your page for each amusement.

Balance both the business requirements and technical requirements.

Make sure that your page uses a HTML template with valid HTML.

Web Pages

HTML

HTML Code

Create a file bacs200/amuse.html

Customize this code for a jump start on the HTML.

``` <!DOCTYPE html>

        <meta charset="UTF-8">
        <title>Page Title</title>

    </head>
    <body>

        <h1>Amusements</h1>
        <img src="https://shrinking-world.com/static/images/unc/bacs200/Bear_Logo.png" alt="Logo">
        <h2>Amusement #1</h2>
        <p>Description ... </p>
        <p>Description ... </p>
        <p><a href="http://google.com">Learn More ...</a></p>

    </body>
</html>

```

See Instructor Solution

STEPS

Test Your Home Page

Grading Your Page

Requirements

Use the following requirements as a checklist for your testing