forked from guevaraia/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
159 lines (155 loc) · 4.88 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pricing Cards</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="landing-page-section">
<h2>Become <span class="gradient-text">Atheros Member</span></h2>
<p>
The price for each plan represents a one-time payment. <!--? more text here -->
</p>
<div class="pricing-container">
<article class="pricing-card pricing-card--primary">
<img
src="assets/complete-package.svg"
alt="Complete Package"
class="plan-icon"
>
<h3>The Complete Package</h3>
<div class="pricing-card__price">
<img
alt="Price"
src="assets/price.svg"
>
$94.00
<s>$174</s>
</div>
<a
class="enroll"
title="Enroll Now"
target="_blank"
rel="noopener"
href="https://learning.atheros.ai/course-detail/ux-design-process"
>
Enroll Now
</a>
<div class="divider"></div>
<ul>
<li>
The Complete Package includes all the benefits mentioned in the next two packages 👇🏼
</li>
<li>
Online Video Course
</li>
<li>
E-book in PDF format
</li>
<li>
Design resources + special deals on design assets
</li>
<li>
Access to the Slack mentoring channel
</li>
</ul>
</article>
<article class="pricing-card">
<img
src="assets/video.svg"
alt="Video Course"
class="plan-icon"
>
<h3>Video Course</h3>
<div class="pricing-card__price">
<img
alt="Price"
src="assets/price.svg"
>
$86.00
<s>$49</s>
</div>
<a
class="enroll"
title="Enroll Now"
target="_blank"
rel="noopener"
href="https://learning.atheros.ai/course-detail/ux-design-process"
>
Enroll Now
</a>
<div class="divider"></div>
<ul>
<li>
More than 4.5 hours of videos (theory explained on practical examples + designing real app design in Figma)
</li>
<li>
10 Modules, 31 Chapters, 30 Quizzes + Certificate
</li>
<li>
Get feedback and mentoring directly from Jan Mraz and other members in a private Slack channel
</li>
<li>
Database with useful design freebies, tools, and other links
</li>
</ul>
</article>
<article class="pricing-card">
<img
src="assets/ebook.svg"
alt="E-book Package"
class="plan-icon"
>
<h3>E-book</h3>
<div class="pricing-card__price">
<img
alt="Price"
src="assets/price.svg"
>
$27.00
<s>$29</s>
</div>
<a
class="enroll"
title="Enroll Now"
target="_blank"
rel="noopener"
href="https://learning.atheros.ai/course-detail/ux-design-process"
>
Enroll Now
</a>
<div class="divider"></div>
<ul>
<li>
150+ pages of design knowledge in PDF format
</li>
<li>
Design explained on practical examples + components cheatsheet
</li>
<li>
Database with useful design freebies, tools, and other useful links
</li>
<li>
Special deals on design assets and tools that are available only for the Atheros students!
</li>
</ul>
</article>
</div>
</section>
</body>
</html>
<!-- You get <strong>lifetime access</strong> to mentioned benefits with a <strong>single payment</strong>. -->
<!-- <li>
Online Video Course
</li>
<li>
E-book in PDF format
</li>
<li>
Design resources + special deals on design assets
</li>
<li>
Access to the Slack mentoring channel
</li> -->