-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (95 loc) · 3.12 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pricing Table</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="media-query.css">
<script src="https://unpkg.com/@phosphor-icons/web"></script>
</head>
<body>
<div class="pricing-table">
<section class="essentials" style="--delay: 10ms">
<div class="inner">
<p>PARA VOCÊ COMEÇAR</p>
<div class="title-price">
<strong class="title">Essentials</strong>
<span class="price">R$ <strong>19,97</strong></span>
</div>
<button class="primary">Assinar agora</button>
<ul>
<li>
<i class="ph ph-check"></i>
<span>Até 3 usúarios</span>
<i class="ph ph-info"></i>
</li>
<li>
<i class="ph ph-check"></i>
<span>Autoatendimento</span>
<i class="ph ph-info"></i>
</li>
</ul>
</div>
</section>
<section class="ultimate" style="--delay: 210ms">
<div class="inner">
<p>para você decolar</p>
<div class="title-price">
<strong class="title">Ultimate</strong>
<span class="price">R$
<strong>29,97</strong>
</span>
</div>
<button class="secondary">
Assinar agora
</button>
<ul>
<li>
<i class="ph ph-check"></i>
<span>Usuários ilimitados</span>
<i class="ph ph-info"></i>
</li>
<li>
<i class="ph ph-check"></i>
<span>Suporte 24/7</span>
<i class="ph ph-info"></i>
</li>
<li>
<i class="ph ph-check"></i>
<span>CSM Dedicado</span>
<i class="ph ph-info"></i>
</li>
<li>
<i class="ph ph-check"></i>
<span>Treinamentos</span>
<i class="ph ph-info"></i>
</li>
</ul>
</div>
</section>
<section class="enterprise" style="--delay: 410ms">
<div class="inner">
<p>para sua empresa</p>
<div class="title-price">
<strong class="title">Enterprise</strong>
</div>
<button class="primary">Fale com a gente</button>
<ul>
<li>
<i class="ph ph-check"></i>
<span>Plano customizado especialmente para a necessidade de seu negocio</span>
</li>
</ul>
</div>
</section>
</div>
</body>
</html>