-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsubscribe.html
90 lines (90 loc) · 4.03 KB
/
subscribe.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css" integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA==" crossorigin="anonymous" />
<link rel="stylesheet" href="css/utilities.css">
<link rel="stylesheet" href="css/style.css">
<title>CatBox Landing Site</title>
</head>
<body>
<div class="navbar">
<div class="container flex">
<a href="index.html">
<div class="flex logo gap-4">
<img src="./images/cat.svg"/>
<h1>
CoolCat Box
</h1>
</div>
</a>
<nav class="nav-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="subscribe.html">Subscribe</a></li>
</ul>
</nav>
</div>
</div>
<main class="content">
<section class="subscriptions">
<div class="container">
<h2 class="lg">We have a plan for every cat</h2>
<p class="lead">
Your first CoolCat Box will ship within 2 business
days and should arrive 3 to 10 business days later.
</p>
<div class="grid mt-8">
<div class="plan-container text-center flex flex-col gap-8">
<h3 class="md">Monthly</h3>
<img class="w-75" src="./images/subscription-box.svg"/>
<div>
<h2>Purrfect for one or more cats</h2>
<h2>Includes 5-6 items</h2>
<h2>Free shipping</h2>
</div>
<h1>$22.95 USD every month</h1>
<button class="btn md w-100 hover-opacity">Select</button>
</div>
<div class="plan-container text-center flex flex-col gap-8">
<h3 class="md">Every Other Month</h3>
<img class="w-75" src="./images/subscription-box.svg"/>
<div>
<h2>Purrfect for one or more cats</h2>
<h2>Includes 5-6 items</h2>
<h2>Free shipping</h2>
</div>
<h1>$22.95 USD every 2 months</h1>
<button class="btn md w-100 hover-opacity">Select</button>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="container">
<div class="flex space-between">
<div>
<h3>CoolCat Box</h3>
<h4>Copyright © 2020</h4>
</div>
<div class="flex gap-4">
<a class="underline" href="index.html">Home</a>
<a class="underline" href="subscribe.html">Subscribe</a>
</div>
<div class="flex gap-4">
<a class="hover-expand" href="#"><i class="fab fa-facebook fa-2x"></i></a>
<a class="hover-expand" href="#"><i class="fab fa-twitter fa-2x"></i></a>
<a class="hover-expand" href="#"><i class="fab fa-instagram fa-2x"></i></a>
<a class="hover-expand" href="#"><i class="fab fa-linkedin fa-2x"></i></a>
<a class="hover-expand" href="#"><i class="fab fa-youtube fa-2x"></i></a>
</div>
</div>
<p class="sm opacity-50">
Icons made by <a href="https://www.flaticon.com/authors/freepik" title="Freepik">Freepik</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a>
</p>
</div>
</footer>
</body>
</html>