-
Notifications
You must be signed in to change notification settings - Fork 0
/email
Copy path195 lines (174 loc) · 5.41 KB
/email
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!--
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;300;400;500;600;700&display=swap');
* {
margin: 0;
text-rendering: optimizeLegibility;
font-family: 'Roboto Slab', serif;
}
body{
display: flex;
flex-direction: column;
}
header{
display: flex;
justify-content: center;
width: 100%;
background-color: #fcf4ff;
position: relative;
height: 180px;
align-items: center;
}
.logo_header {
width: 350px;
}
.container{
display: flex;
align-items: center;
background: rgb(101,0,228);
background: linear-gradient(319deg, rgba(101,0,228,1) 1%, rgba(101,0,228,1) 33%, rgba(102,0,153,1) 96%);
flex-direction: column;
}
.figure_container{
display: flex;
flex-direction: row;
align-items: center;
width: 952px;
height: 400px;
background: url("/assets/2019-08-dd-vendas-por-telemarketing.jpg");
}
/* Cuidando da sua carreira */
.text_figure{
padding-left: 110px;
width: 240px;
height: 208px;
padding-right: 10px;
font-style: normal;
font-weight: 400;
font-size: 48px;
line-height: 54px;
color: #660099;
}
/* Vector */
.figure_vivo{
position: relative;
width: 33px;
height: 45px;
left: -90px;
top: -21px;
color: #660099;
}
.introdution_text{
left: 2rem;
width: 920px;
text-align: justify;
background-color: #f6e3ff;
padding: 1rem;
padding-bottom: 50px;
}
.title_paragraphy{
margin-top: 50px;
width: 400px;
text-align: left;
}
.subtitle_paragraphy{
margin-bottom: 20px;
}
p{
margin-bottom: 10px;
}
footer{
display: flex;
height: 100px;
justify-content: center;
align-items: center;
}
a{
text-decoration: none;
}
li{
padding: 5px;
width: 25px;
}
ul{
display: flex;
flex-direction: row;
list-style-type: none;
}
.uil{
font-size: 100px;
color: black;
background-color: #f6e3ff;
}
</style>
</head>
<body>
<header>
<img class="logo_header" src="/assets/vivo-logo-825312px.png" alt="vivo">
</header>
<main class="container">
<div class="figure_container">
<h2 class="text_figure">Cuidando da sua carreira</h2>
<img class="figure_vivo" src="/assets/meu-vivo-quick-links-320x320.svg" alt="">
</div>
<div class="introdution_text">
<h1 class="title_paragraphy">Comum <br> Unidade</h1>
<h3 class="subtitle_paragraphy">A importância do individuo para o coletivo</h3>
<p>
Nós da Vivo estamos muito contentes com seu progresso e desempenho. <br>
<br>
Saiba que nós levamos todo seu esforço em consideração, oferecendo
um ambiente saudável, bônus por meta e chance de crescimento e
ingresso em outras áreas de atuação. <br>
<br>
A Vivo é a maior operadora de telefonia e redes móveis
do Brasil e devemos isso a você que se dedica trabalhando
todos os dias nas nossas operações atendendo
os clientes com excelência. <br>
<br>
A Vivo se faz com os indivíduos, juntos somos
uma grande Comunidade, somos Potência!
</p>
</div>
</main>
<footer>
<ul>
<li>
<a href="https://www.instagram.com/vivo/">
<img class="uil" src="/assets/instagram.svg"
alt="Instagran">
</a>
</li>
<li>
<a href="https://www.facebook.com/vivo/">
<img class="uil" src="/assets/facebook.svg"
alt="Facebook">
</a>
</li>
<li>
<a href="https://www.youtube.com/user/Vivo">
<img class="uil" src="/assets/youtube.svg"
alt="YouTube">
</a>
</li>
<li>
<a href="https://twitter.com/vivobr/">
<img class="uil" src="/assets/twitter.svg"
alt="Twitter">
</a>
</li>
<li>
<a href="https://www.linkedin.com/company/vivo-telefonicabr/">
<img class="uil" src="assets/linkedin.svg"
alt="Linkedin">
</a>
</li>
</ul>
</footer>
</body>
</html>
-->