Week 1 Day 3: CSS Introduction

This commit is contained in:
2025-12-17 16:18:55 +05:30
parent f834744e2a
commit 0c51607942
4 changed files with 86 additions and 0 deletions

13
Week-1/Day-3/example.css Normal file
View File

@@ -0,0 +1,13 @@
h1 {
color: darkblue;
font-size: 2.5em;
}
p {
color: gray;
font-size: 1em;
}
body {
background-color: #f0f0f0;
}