-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpricing.php
57 lines (53 loc) · 1.49 KB
/
pricing.php
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
<link rel="stylesheet" href="css/pricing.css" />
<?php
$title = 'pricing';
include 'header.php';
?>
<!--Start content of the page-->
<div class="containerDiv">
<div class="headerTextDiv">
<h1>Pricing</h1>
<p>You can start for free and Upgrade at anytime</p>
</div>
<div class="toggleSwithDiv">
<p>Monthly</p>
<label class="switch">
<input type="checkbox" id="btnSwitch" />
<span class="slider round" id="btnSwitchRound"></span>
</label>
<p>Annually (Save 20%)</p>
</div>
<div class="upgradeCardDiv">
<div class="upgradeCard">
<div class="contentDiv">
<h3>Free</h3>
<h3>$0</h3>
<a href="signup.php"><button class="btnFree">Sign Up for Free</button></a>
<hr />
<ul>
<li>Play Free Games </li><br>
<li>Limited Support </li><br>
<br>
</ul>
<a href="signup.php"><button class="btnFree">Sign Up for Free</button></a>
</div>
</div>
<div class="upgradeCard">
<div class="contentDiv">
<h3>Free</h3>
<h3 id="value">$9/mon</h3>
<button class="btnPremium">Sign Up for Premium</button>
<hr />
<ul>
<li>Play Free Games</li><br>
<li>Play Premium Games</li><br>
<li>24/7 Support</li>
</ul>
<button class="btnPremium">Sign Up for Premium</button>
</div>
</div>
</div>
</div>
<script src="js/pricing.js"></script>
<!--End content of the page-->
<?php include('./footer.php'); ?>