The easiest way is using Tailwind CSS. Run below codes in the terminal of the VS CODE.
code link that is to be run in the terminal
This way you will get ready to use TAILWIND CSS.
REMEMBER:- Code snippet will not work until codes in provided image run in the terminal of the VS Code.
Main code to make the bottom of an element rounded border-2 rounded-b-lg
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/input.css">
<title>Document</title>
</head>
<body>
<nav class=" bg-gray-400 h-10 ">
<ul class="flex space-x-4 mx-4">
<li class=" hover:border-2 rounded-b-lg border-b-green-500 border-purple-700">Home</li>
<li class=" ">Help</li>
<li class=" ">Contact</li>
</ul>
</nav>
</body>
</html>