Creating Your Certificate of Registration Webpage

Objective:

In this hands-on activity, you will create a Certificate of Registration webpage using HTML and CSS. This activity will reinforce your understanding of fundamental web development concepts, including structuring content with HTML and styling it with CSS.

Requirements:

Activity Steps:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="styles.css">
    <title>Certificate of Registration</title>
</head>
<body>
    <!-- Your certificate content will go here -->
</body>
</html>

Step 3: Design the Certificate Layout (styles.css) Open styles.css in your text editor. Begin with CSS reset and basic styling:


body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.certificate {
    background-color: white;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Add more styles to customize your certificate */

Deliverables:

  1. html/css and assets of your COR Webpage
  2. copy of your actual COR
  3. screenshot of the validator result for your webpage
  4. Video explainer (not more than 300 Mb in size)
  5. the above files must be included in the repository

Submission

Remember, the key to this activity is understanding the relationship between HTML and CSS and how they work together to create visually appealing webpages.