Advertisement
renatoknot

Untitled

Dec 27th, 2021
1,007
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.   <meta charset="UTF-8">
  6.   <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
  7.  
  8.   <link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
  9.  
  10.   <title>Frontend Mentor | Order summary card</title>
  11.  
  12.   <!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
  13.   <style>
  14.     .attribution {
  15.       font-size: 11px;
  16.       text-align: center;
  17.     }
  18.  
  19.     .attribution a {
  20.       color: hsl(228, 45%, 44%);
  21.     }
  22.   </style>
  23.   <link rel="stylesheet" href="style.css">
  24.   <link rel="preconnect" href="https://fonts.googleapis.com">
  25.   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  26.   <link href="https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@500;700;900&display=swap" rel="stylesheet">
  27. </head>
  28.  
  29. <body>
  30.   <main class="card">
  31.     <img src="./images/illustration-hero.svg" alt="illustration hero" class="illustration">
  32.     <h2>Order Summary</h2>
  33.  
  34.     <p>
  35.       You can now listen to millions of songs, audiobooks, and podcasts on any
  36.       device anywhere you like!
  37.     </p>
  38.  
  39.     <div class="summary">
  40.       <div class="summary-value">
  41.         Annual Plan
  42.         $59.99/year
  43.       </div>
  44.  
  45.       <p class="btn-summary-change">Change</p>
  46.     </div>
  47.  
  48.     <button class="btn-payment">Proceed to Payment</button>
  49.     <button class="btn-cancel">Cancel Order</button>
  50.   </main>
  51.  
  52.  
  53. </body>
  54.  
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement