<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->

  <link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
  <link rel="stylesheet" href="./css/style.css">
  
  <title>Frontend Mentor | Single Price Grid Component</title>
</head>
<body>
  <main>
    <div class="topRow">
      <div class="heading">
        Join our community
      </div>

      <div class="quickSell">
        30-day, hassle-free money back guarantee
      </div>
    
      <div class="sellBlurb">
        Gain access to our full library of tutorials along with expert code reviews. 
        Perfect for any developers who are serious about honing their skills.  
      </div>
    </div>
    <div class="bottomRow">
      <div class="pricingBox">
        <div class="heading">
          Monthly Subscription
        </div>

        <div class="priceRow">
          <div class="price">&dollar;29</div> <span class="pricePeriod">per month</span>
        </div>
      
        <div class="sell">
          Full access for less than &dollar;1 a day
        </div>
      
        <a title="Sign Up Button" href="#" class="signupButton">Sign Up</a>
      </div>
      <div class="whyUsBox">
        <div class="heading">
          Why Us
        </div>

        <div class="blurb">
          Tutorials by industry experts
          Peer &amp; expert code review
          Coding exercises
          Access to our GitHub repos
          Community forum
          Flashcard decks
          New videos every week  
        </div>
      </div>
    </div> 
  </main> 
  <footer>
    <p class="attribution">
      Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. 
      Coded by <a href="emailto:rob@tarasis.net">Robert McGovern</a>.
    </p>
  </footer>
</body>
</html>