🧩 Level: Beginner | Topic: CSS Basics & Box Model
In this project, you’ll take your Gift Ideas HTML page from Assignment 1 and make it look visually appealing by applying CSS styling.
By the end of this assignment, you’ll learn:
✅ Must Know
Basic HTML from Assignment 1: headings, paragraphs, lists, links, images, and <div>
containers
Linking CSS: How to connect an external CSS file to your HTML using <link rel="stylesheet" href="style.css">
Learn from 👉 MDN – Linking CSS
CSS Selectors:
body
, h1
, p
)
Learn from 👉 MDN – CSS SelectorsBasic CSS Properties:
color
, background-color
, font-family
, text-align
Box Model Basics:
padding
, margin
, border
, border-radius
Learn from 👉 MDN – The Box Model
⚙️ Good to Have
Basic Linux terminal commands (cd
, mkdir
, ls
, touch
) to create and organize project files
Resources:
Basic Git & GitHub knowledge to track and save your project
git init
, git add
, git commit
Resources: