<!DOCTYPE html>
<html>
<head>
<style>
div {
border: 5px solid red;
}
</style>
</head>
<body>
<h2>The border Property</h2>
<p>This property is a shorthand property for border-width, border-style, and border-color:</p>
<div>This is some text.</div>
</body>
</html>