Computer scienceFrontendCSSFlexbox

Axis alignment

Footer

Report a typo

Make a web site's footer look like in the picture below by justifying the columns with gaps around them and making the last column aligned to the cross-end.

Gray rectangle with contact information and navigation links

Write HTML and CSS code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<title>Flex-wrap</title>
</head>
<body>
<div class="footer">
<div class="footer-column column1">
<h2>About us</h2>
<p><a href="#">Blog</a></p>
<p><a href="#">API</a></p>
</div>
<div class="footer-column column2">
<h2>Resources</h2>
<p><a href="#">Technical support</a></p>
<p><a href="#">Documentation</a></p>
<p><a href="#">Plans & procing</a></p>
<p><a href="#">Version control</a></p>
</div>
<div class="footer-column column3">
<h2>Connect with us</h2>
<p>Sign up for our newsletter</p>
<p><input type="email" placeholder="email"><button type="submit" class="btn-sbscrb">Subscribe</button></p>
</div>
</div>
</body>
</html>

Completed 0 of 2
.footer styles applied
Third column styles applied
___

Create a free account to access the full topic