<html>
<head>
<style>
h1 {
border-left: 5px solid red;
}
h2 {
border-left: 4px dotted blue;
}
div {
border-left: double;
}
</style>
</head>
<body>
<h1>A heading with a solid red left border</h1>
<h2>A heading with a dotted blue left border</h2>
<div>A div element with a double left border.</div>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.php?filename=trycss_border-left by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:35:39 GMT -->
</html>