https://i.sstatic.net/dj4zb.png
I have this image that I need to divide into three sections with a legend at the top, similar to the image shown.
So far, this is the code I have, but I'm struggling with creating the vertical line, adding space between the top and bottom, and creating a curved border for the legend at the top.
<!DOCTYPE html>
<html>
<head>
<style>
#rcorners2 {
border-radius: 25px;
border: 2px solid #73AD21;
padding: 20px;
width: 650px;
height: 150px;
}
</style>
</head>
<body>
<p id="rcorners2"></p>
</body>
</html>
I'm a beginner in HTML and CSS and would greatly appreciate any help with the code! Thank you!