-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (139 loc) · 5.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<title>Escalator Desktop Page</title>
<link rel="stylesheet" href="assets/css/base/base.css" />
<link rel="stylesheet" href="assets/css/main/main.css" />
<link rel="stylesheet" href="assets/css/main/main-title.css" />
<link rel="stylesheet" href="assets/css/main/main-logo.css" />
<link rel="stylesheet" href="assets/css/main/main-btn.css" />
<link rel="stylesheet" href="assets/css/categories/categories.css" />
<link
rel="stylesheet"
href="assets/css/categories/categories_container.css"
/>
<link rel="stylesheet" href="assets/css/categories/categories-item.css" />
<link rel="stylesheet" href="assets/css/plans/plans.css" />
<link rel="stylesheet" href="assets/css/plans/plan.css" />
<link rel="stylesheet" href="assets/css/plans/plans-itens.css" />
<link rel="stylesheet" href="assets/css/components/secondary_title.css" />
<link rel="stylesheet" href="assets/css/components/paragraph.css" />
</head>
<body>
<main>
<img class="logo" src="assets/images/logo.svg" alt="" />
<h1 class="title">We have ideas to growth your business</h1>
<a class="btn" href="#">See now</a>
</main>
<div class="container">
<section class="categories">
<h2 class="secondary-title">Categories</h2>
<p class="paragraph">discover new possibilities to help you today</p>
<div class="categories-container">
<div class="nature categories-item scaleEffect">
<h3>nature</h3>
<p>Lorem ipsum dolor sit amet</p>
</div>
<div class="daily categories-item scaleEffect">
<h3>daily</h3>
<p>Praesent tincidunt consectetur diam</p>
</div>
<div class="together categories-item scaleEffect">
<h3>together</h3>
<p>Vivamus non arcu tincidunt, tempus nunc eu, scelerisque ipsum</p>
</div>
<div class="analysis categories-item scaleEffect end">
<h3>analysis</h3>
<p>Duis sollicitudin mauris vitae venenatis aliquet</p>
</div>
<div class="pictures categories-item scaleEffect">
<h3>pictures</h3>
<p>Quisque eu nisl purus</p>
</div>
</div>
</section>
</div>
<section class="plans">
<div class="center">
<h2 class="secondary-title">Growth plans</h2>
<p class="paragraph">take your business to the next level</p>
<div class="plans-itens">
<div class="plan scaleEffect">
<div class="price-container">
<span class="price">$ 100</span>
<span class="hours">100 + hours</span>
</div>
<div class="description-container">
<span class="plan-description"
>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span
>
</div>
</div>
<div class="plan scaleEffect">
<div class="price-container">
<span class="price">$ 150</span>
<span class="hours">180 + hours</span>
</div>
<div class="description-container">
<span class="plan-description"
>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span
>
</div>
</div>
<div class="plan scaleEffect">
<div class="price-container">
<span class="price">$ 200</span>
<span class="hours">260 + hours</span>
</div>
<div class="description-container">
<span class="plan-description"
>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span
>
</div>
</div>
<div class="plan scaleEffect">
<div class="price-container">
<span class="price">$ 250</span>
<span class="hours">380 + hours</span>
</div>
<div class="description-container">
<span class="plan-description"
>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span
>
</div>
</div>
<div class="plan scaleEffect">
<div class="price-container">
<span class="price">$ 300</span>
<span class="hours">420 + hours</span>
</div>
<div class="description-container">
<span class="plan-description"
>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span
>
</div>
</div>
<div class="plan scaleEffect">
<div class="price-container">
<span class="price">$ 350</span>
<span class="hours">520 + hours</span>
</div>
<div class="description-container">
<span class="plan-description"
>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span
>
</div>
</div>
</div>
</div>
</section>
</body>
</html>