Need to draw a rounded rectangle around selected headings

you’ll need to do some homework for you to play around with css. do explore links below. i’ll give you a snippet to help u get started for that rounded rectangle headings

h1, h2, h3 {
    border: 1px solid white;
    border-radius: 5px;
    padding: 5px;
}
1 Like