border in css
<!DOCTYPE html>
<html>
<head>
<title>website</title>
</head>
<body>
<style type="text/css">
p{
size: 20px;
width: 50px;
border:3px;
border-style: solid;
border-color: red;
border-radius: 70px;
}
</style>
<p align="center">hello world</p>
</body>
</html>