<html lang="en">
<head>
<meta charset="utf-8">
<title>CSS border-radius</title>
<style>
.three {
width: 300px;
height: 300px;
border-style: solid;
background: #00acd7;
border-radius: 50%;
}
h5{
display: flex;
justify-content: center;
align-items: center;
height: 200px;
font-size: 25px;
}
</style>
</head>
<body>
<div class="three"><h5>border-radius: 50%;<h5></div>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.