-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (107 loc) · 4.69 KB
/
index.html
File metadata and controls
108 lines (107 loc) · 4.69 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<title>Onboarding</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="container">
<header class="center">
<h2>Choose the plan that works for you</h2>
<p class="center">Get the tools and support needed to build your
business, so you can create the life you want.</p>
</header>
<div class="billing-type center">
<ul class="billing-list">
<li class="billing selected">Monthly billing</li>
<li class="billing">Annual billing</li>
</ul>
</div>
<div class="billing-plans center">
<!-- Plan #1 -->
<div class="plan">
<div class="plan-header center">Hobbiest</div>
<p class="plan-description">You occasionally spend copious amounts of time moving pixels with your computer and sipping lattes.</p>
<div class="plan-cost center">
<span class="symbol">$</span>
<span class="price"><span class="amount">0</span>/ month</span>
</div>
<div class="plan-details">
<ul class="details-list">
<li class="detail">1 domain</li>
<li class="detail">512MB Memory</li>
<li class="detail">1 Core Processor</li>
<li class="detail">500GB Disk Space</li>
<li class="detail">72 Hour Support SLA</li>
</ul>
</div>
<div class="choose-btn">
<button class="choose">Choose plan</button>
</div>
</div>
<!-- Plan #2 -->
<div class="plan active-start">
<div class="plan-header center">Squad</div>
<p class="plan-description">You and your friends come up with million dollar ideas daily and want to share with the interwebs.</p>
<div class="plan-cost center">
<span class="symbol">$</span>
<span class="price"><span class="amount">40</span> / month</span>
</div>
<div class="plan-details">
<ul class="details-list">
<li class="detail">12 domains</li>
<li class="detail">12GB Memory</li>
<li class="detail">2 Core Processor</li>
<li class="detail">1TB Disk Space</li>
<li class="detail">Business Hour Support</li>
</ul>
</div>
<div class="choose-btn">
<button class="choose">Choose plan</button>
</div>
</div>
<!-- Plan #3 -->
<div class="plan">
<div class="plan-header center">Starship Enterprise</div>
<p class="plan-description">You built a product and for some reason people keep using it so you need more server juice.</p>
<div class="plan-cost center">
<span class="symbol">$</span>
<span class="price"><span class="amount">200</span> / month</span>
</div>
<div class="plan-details">
<ul class="details-list">
<li class="detail">20 domains</li>
<li class="detail">64GB Memory</li>
<li class="detail">8 Core Processor</li>
<li class="detail">Unlimited Disk Space</li>
<li class="detail">24/7 On Call Support</li>
</ul>
</div>
<div class="choose-btn">
<button class="choose">Choose plan</button>
</div>
</div>
</div>
</div>
<div class="curve-container">
<div class="curve"></div>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script>
$(".billing-plans .plan").hover(function() {
$(".plan.active-start").removeClass('active-start')
$(this).toggleClass("active");
});
$(".billing-plans").mouseleave(function() {
$(".plan:nth-child(2)").addClass('active-start')
console.log("moused out")
})
</script>
</body>
</html>