There seems to be an issue in the code below where I am struggling to apply a border Can anyone help identify what the problem might be?
<!doctype html>
<html>
<head>
<title> My first Navigation Page</title>
The CSS code includes margin styles that are not being applied to the nav tag
<style type="text/CSS">
#margin
{
margin-top: 20px;
border: 1px;
padding: 2px;
color:green;
}
</style>
</head>
<body>
<nav id="margin">
<a href="#" >html</a>
<a href="#">CSS</a>
<a href="#">Java Script</a>
</nav>
</body>
</html>