Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
nav {
margin: 30px;
}
nav a {
text-transform: capitalize;
text-decoration: none;
color: rgba(60, 60, 60);
font-family: sans-serif;
padding: 5px 5px;
margin-top: 20px;
width: 140px;
text-align: center;
display: inline-block;
}
nav a:not(:last-child) {
border-right: 5px solid #193fe6;
}
</style>
</head>
<body>
<nav>
<a href="https://www.w3docs.com/learn-html.html">Learn HTML</a>
<a href="https://www.w3docs.com/learn-css.html">Learn CSS</a>
<a href="https://www.w3docs.com/learn-git.html">Learn Git</a>
<a href="https://www.w3docs.com/learn-javascript.html">Learn Javascript</a>
<a href="https://www.w3docs.com/learn-php.html">Learn PHP</a>
<a href="https://www.w3docs.com/snippets">Snippets</a>
</nav>
</body>
</html>