prog3web
prog3web
<!DOCTYPE html>
<head>
<title>Styled HTML Page | vtucode</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Main Heading</h2>
<h3>Subheading</h3>
<hr>
<p>This is a paragraph demonstrating the basic text styling applied by
CSS.</p>
<div>
This is a styled <strong>div</strong> element with padding and a
light border. Inside the div, we can also use
<span>span elements</span> that have their own styles, like this
bold and orange text.
</div>
</body>
</html>