23 lines
473 B
HTML
23 lines
473 B
HTML
<!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>
|