Week 2 Day 3: Responsive web design

This commit is contained in:
2025-12-24 16:38:19 +05:30
parent 1a18cc4696
commit 080b555db1
4 changed files with 159 additions and 0 deletions

22
Week-2/Day-3/index.html Normal file
View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Responsive Design</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Responsive Web Page</h1>
</header>
<section class="content">
<div class="card">Content Box 1</div>
<div class="card">Content Box 2</div>
<div class="card">Content Box 3</div>
</section>
</body>
</html>