Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .main { display: flex; } a { text-decoration: none; } .align2 { margin-right: auto; } .align1, .align2, .align3 { background: #e8e7e3; border: 1px solid #8a8a8a; padding: 5px 10px; } </style> </head> <body> <h2>Example</h2> <div class="main"> <div class="align1"> <a href="https://www.w3docs.com/learn-html.html">HTML</a> </div> <div class="align2"> <a href="https://www.w3docs.com/learn-css.html">CSS</a> </div> <div class="align3"> <a href="https://www.w3docs.com/learn-git.html">GIT</a> </div> </div> </body> </html>