<html>
<head>
<style>
h1 {
border-bottom-style: ridge;
border-bottom-color: coral;
border-bottom-width: 7px;
}
div {
border-style: solid;
border-bottom-style: ridge;
border-bottom-color: coral;
border-bottom-width: 7px;
}
</style>
</head>
<body>
<h1>A heading with a ridge bottom border</h1>
<div>A div element with a ridge bottom border.</div>
</body>
</html>