Web Development II - Reid - 2024-S14
3.5.3 Style the Table
Skip To Content
Dashboard
  • Login
  • Dashboard
  • Calendar
  • Inbox
  • History
  • Help
Close
  • My Dashboard
  • Web Development II - Reid - 2024-S14
  • Assignments
  • 3.5.3 Style the Table
2023/2024 - St. George Academy - Semester 1
  • Home
  • Modules
  • Pages
  • Assignments
  • Quizzes
  • Collaborations
  • Google Drive
  • Lucid (Whiteboard)
  • Canva for Education

3.5.3 Style the Table

  • Due Oct 28, 2023 by 11:59pm
  • Points 5
  • Submitting a file upload
  • File Types html

This webpage has a table of games. The style rules have already been given to you.

Assign the game class to all the game elements in your table and add the ID favorite to your favorite game.

Your table should end up looking similar to this:

STARTER CODE

<!DOCTYPE html>
<html>
    <head>
        <title>Game Table</title>
        <style>
            table{
                font-size:18px;
                background-color:AliceBlue;
            }
            #favorite{
                background-color:green;
            }
            .game{
                background-color:orange;   
                color:white;
            }
        </style>
    </head>

    <body>
        <table border="1">
            <tr>
                <th>Board Game Name</th>
                <th>Number of Players</th>
                <th>Who Owns the Game</th>
            </tr>
            <tr>
                <td>Settlers of Catan</td>
                <td>3</td>
                <td>Zach</td>
            </tr>
            <tr>
                <td>Monopoly</td>
                <td>6</td>
                <td>Kimmie</td>
            </tr>
            <tr>
                <td>Checkers</td>
                <td>2</td>
                <td>Calvin</td>
            </tr>
        </table>
    </body>
</html>
1698559199 10/28/2023 11:59pm
Please include a description
Additional Comments:
Rating max score to > pts
Please include a rating title

Rubric

Find Rubric
Please include a title
Find a Rubric
Title
You've already rated students with this rubric. Any major changes could affect their assessment results.
 
 
 
 
 
 
 
     
Can't change a rubric once you've started using it.  
Title
Criteria Ratings Pts
This criterion is linked to a Learning Outcome Description of criterion
threshold: 5 pts
Edit criterion description Delete criterion row
5 to >0 pts Full Marks blank
0 to >0 pts No Marks blank_2
This area will be used by the assessor to leave comments related to this criterion.
pts
  / 5 pts
--
Additional Comments
Total Points: 5 out of 5