-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
125 lines (83 loc) · 2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<title>Frontend Mentor | Multi-step form</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<!-- Sidebar start -->
Step 1
Your info
Step 2
Select plan
Step 3
Add-ons
Step 4
Summary
<!-- Sidebar end -->
<!-- Step 1 start -->
Personal info
Please provide your name, email address, and phone number.
Name
e.g. Stephen King
Email Address
e.g. [email protected]
Phone Number
e.g. +1 234 567 890
Next Step
<!-- Step 1 end -->
<!-- Step 2 start -->
Select your plan
You have the option of monthly or yearly billing.
Arcade
$9/mo
Advanced
$12/mo
Pro
$15/mo
Monthly
Yearly
Go Back
Next Step
<!-- Step 2 end -->
<!-- Step 3 start -->
Pick add-ons
Add-ons help enhance your gaming experience.
Online service
Access to multiplayer games
+$1/mo
Larger storage
Extra 1TB of cloud save
+$2/mo
Customizable Profile
Custom theme on your profile
+$2/mo
Go Back
Next Step
<!-- Step 3 end -->
<!-- Step 4 start -->
Finishing up
Double-check everything looks OK before confirming.
<!-- Dynamically add subscription and add-on selections here -->
Total (per month/year)
Go Back
Confirm
<!-- Step 4 end -->
<!-- Step 5 start -->
Thank you!
Thanks for confirming your subscription! We hope you have fun
using our platform. If you ever need support, please feel free
to email us at [email protected].
<!-- Step 5 end -->
<div class="attribution">
Coded by <a href="#">Your Name Here</a>.
</div>
</body>
</html>