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

11
Week-1/Day-3/index.html Normal file
View File

@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS Styling Practice</title>
<link rel="stylesheet" href="example.css">
</head>
<body>
<h1>Welcome to CSS Styling</h1>
<p>This paragraph is styled using CSS.</p>
</body>
</html>