Let's use our knowledge of creating classes to build a pricing card for a webpage.

<html> <head> <style>body{text-align: center;}.pricing{border: 2px solid indigo;}.header{font-size: 30px; background-color: indigo; color: white; margin: 0px;}.price{font-size: 25px;}</style> </head> <body> <h1>Pricing </h1> <div class="pricing"> <p class="header"> Basic</p><p class="price"> $ 9.99 / mo </p><button>Get Started</button> <br><br></div></body></html>]]>