Source Code:
(back to article)
Submit
Result:
Report an issue
<!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; border: 1px solid #000000; border-radius: 10px; } nav a:not(:last-child) { background-color: #a2d4eb; } </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>