File 4
File 4
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Box Model Demo</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="box">
<h2>This is a box!</h2>
<p>Observe the box model properties:</p>
</div>
</body>
</html>
CSS (styles.css)
p {
color: #555;
}
/* Adding a border around the page for clarity */
body {
border: 5px dashed #333;
padding: 20px;
}