-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (53 loc) · 2.17 KB
/
index.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
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Asap:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Doggie Kibbles</h1>
<p class="tagline">Tailored natural food subscription for your family member.</p>
<div class="plan">
<div class="plan-inner">
<span class="flip-front">Monthly</span>
<span class="flip-back">Yearly</span>
</div>
</div>
<div class="container">
<div id="eco" class="card">
<h2>Economic package</h2>
<p><em>$9.99/month</em></p>
<ul>
<li>Food for the month</li>
<li>Friday treat</li>
<li>Monthly toy</li>
</ul>
<button>*blep*</button>
</div>
<div id="classic" class="card">
<h2>Classic package</h2>
<p><em>$14.99/month</em></p>
<ul>
<li>Premium food for the month</li>
<li>Friday treat</li>
<li>Weekly biodegradable toy</li>
</ul>
<button>*mlem*</button>
</div>
<div id="lux" class="card">
<h2>Luxurious package</h2>
<p><em>$19.99/month</em></p>
<ul>
<li>Delux food for the month</li>
<li>Friday treats and games</li>
<li>Weekly biodegradable toy</li>
<li>Pet insurance</li>
</ul>
<button>Dis!</button>
</div>
</div>
<script src="index.js"></script> <!--<script src="index.pack.js"></script>-->
</body>
</html>