<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
.main {
display: flex;
justify-content: space-between;
}
.align1,
.align2 {
background: #e8e7e3;
border: 1px solid #8a8a8a;
}
</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>
</body>
</html>