-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwp-pusher.html
More file actions
147 lines (135 loc) · 4.94 KB
/
wp-pusher.html
File metadata and controls
147 lines (135 loc) · 4.94 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wp-Pusher</title>
<link rel="stylesheet" href="pusher.css" />
<link
href="https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
</head>
<body>
<header>
<nav class="nav-bar">
<div class="logo">
<img src="./asset/images/wsplogo.png" alt="this is wp-pusher-logo" />
</div>
<input type="checkbox" id="menu-toggle" />
<label for="menu-toggle" class="menu-icon">
<!-- Hamburger icon -->
<span></span>
<span></span>
<span></span>
</label>
<ul class="nav-links">
<a href="#" title="Download"><li>Download</li></a>
<a href="#" title="Learn More"><li>Learn More</li></a>
<a href="#" title="Pricing"><li>Pricing</li></a>
<a href="#" title="Help"><li>Help</li></a>
<a href="#" title="Account" class="account-button"
><li>Account</li></a
>
</ul>
</nav>
</header>
<section>
<div class="large-container">
<div class="left-container">
<div class="section-one">
<h1>Checkout</h1>
</div>
<hr />
<div class="basic-info">
<p class="left-text"><span>1</span> Your Basic Information</p>
<div class="name">
<div class="firstname namegroup">
<label for="fname">First Name</label>
<input type="text" id="fname" name="fname" placeholder="Jane" />
</div>
<div class="lastname namegroup">
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lname" placeholder="Doe" />
</div>
</div>
<div class="email">
<label for="email">E-mail</label>
<input
type="email"
id="email"
name="email"
placeholder="janedoe@example.com"
/>
</div>
</div>
<hr />
<div class="payment-info">
<p class="left-text"><span>2</span> Your Payment Information</p>
<div class="payment">
<label for="credit-card" class="input-label">Credit Card</label>
<div class="input-group">
<input
type="text"
id="card-number"
placeholder="Card Number"
class="input-field"
/>
<input
type="text"
placeholder="MM / YY"
class="expiry-date"
/>
<input type="text" placeholder="CVC" class="cvc" />
</div>
</div>
</div>
<hr />
<div class="payment-submit">
<a href="#" class="pay-btn">Buy WP Pusher</a>
<p class="contact-text">
<span>?</span> <strong>Need any help?</strong> Don't hesitate to contact support!
</p>
<img src="./asset/images/powered_by_stripe.png" alt="powered by stripe" />
</div>
</div>
<div class="pricing-card">
<h2>Freelancer</h2>
<div class="sub">
<p class="sign">$</p>
<p class="price">99</p>
<p class="duration">/ year</p>
</div>
<p class="renewal">
Automatically renews <br />
after 1 year
</p>
<ul>
<li><img src="./asset/images/list check.png" alt="checkbox" /> Use on 5 clients sites</li>
<li><img src="./asset/images/list check.png" alt="checkbox" /> Private Repositories</li>
<li><img src="./asset/images/list check.png" alt="checkbox" /> Email Support</li>
</ul>
<p class="agency-plan">
Need<strong>20</strong> client sites? <br />
<a href="#">Switch to <em>Agency</em> plan.</a>
</p>
<hr />
<p class="ftp-text">
FTP is horrible to deal with. <br />
<strong>WP Pusher</strong> solves that issue, <br />
and the customer support is awesome!
</p>
<div class="author">
<img src="./asset/images/author.png" alt="author image" />
<p>Kirk Beard</p>
</div>
</div>
</div>
</section>
<footer>
<p>© 2018 WP Pusher IVS · <a href="#">Terms of Service</a></p>
</footer>
</body>
</html>