-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprova-pratica-17-04-2023
176 lines (140 loc) · 4.9 KB
/
prova-pratica-17-04-2023
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
<!DOCTYPE html">
<html lang="pt br">
<head>
<meta charset="UTF-8">
<title>prova-prática-11-04-2023</title>
<style>
body {
background-color: lightblue;
}
table {
border-collapse: collapse;
width: 100%;
margin-bottom: 30px;
font-family: Arial, sans-serif;
}
table td, th {
text-align: left;
padding: 8px;
}
table th {
background-color: #1E90FF;
color: white;
font-weight: bold;
border-bottom: 3px solid #0000CD;
}
table tr:nth-child(even) {
background-color: #F0F8FF;
}
table tr:hover {
background-color: #87CEEB;
}
.image {
border: 2px solid black;
padding: 10px;
border-radius: 15px;
width: 400px;
}
.paragraph b {
font-weight: bold;
}
.paragraph i {
font-style: italic;
}
.paragraph u {
text-decoration: underline;
}
.title {
font-size: 24px;
font-weight: bold;
color: #1E90FF;
border-bottom: 2px solid #1E90FF;
margin-bottom: 10px;
text-align: center;
}
.subtitle {
font-size: 20px;
font-weight: bold;
color: #1E90FF;
border-bottom: 2px solid #1E90FF;
margin-bottom: 10px;
text-align: center;
}
.list {
list-style: none;
margin-left: 0;
padding-left: 0;
}
.list li:before {
content: "•";
color: #1E90FF;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
.footer {
text-align: center;
color: #1E90FF;
margin-top: 30px;
font-weight: bold;
}
.text-justify {
text-align: justify;
}
</style>
<h1 class="title">As Profissões em TI</h1>
<table>
<head>
<tr>
<th>Profissão</th>
<th>Descrição</th>
<th>Salário</th>
<th>Nível de Escolaridade</th>
</tr>
</head>
<body>
<tr>
<td>Desenvolvedor Web</td>
<td>Programa e desenvolve páginas web utilizando HTML, CSS e JavaScript.</td>
<td>R$ 6.000,00</td>
<td>Superior completo em TI ou áreas relacionadas.</td>
</tr>
<tr>
<td>Analista de Sistemas</td>
<td>Analisa e
<li>Desenvolvedor Web</li>projeta sistemas de informação, documentando requisitos, dados e processos.</td>
<td>R$ 8.000,00</td>
<td>Superior completo em TI ou áreas relacionadas.</td>
</tr>
<tr>
<td>Arquiteto de Software</td>
<td>Define a arquitetura de software que será utilizada na construção de um sistema.</td>
<td>R$ 12.000,00</td>
<td>Superior completo em TI ou áreas relacionadas.</td>
</tr>
<tr>
<td>Gerente de Projeto</td>
<td>Coordena a equipe responsável pelo desenvolvimento de um sistema ou aplicativo.</td>
<td>R$ 15.000,00</td>
<td>Superior completo em TI ou áreas relacionadas.</td>
</tr>
</body>
</table>
<h2 class="subtitle">Principais Profissões em TI</h2>
<img src="/tmp/guest-woe20m/Documentos/Documentos" alt" As Profissões em TI " class="image">
<div class="paragraph">
<p>As <b>profissões em TI</b> estão em constante evolução. A tecnologia avança a cada dia e, consequentemente, novas áreas de atuação são criadas. Os profissionais de TI precisam estar atualizados para atender às demandas do mercado.</p>
<p>Um <i>desenvolvedor web</i>, por exemplo, é um profissional que programa e desenvolve páginas web utilizando HTML, CSS e JavaScript. Já um <u>analista de sistemas</u> é responsável por analisar e projetar sistemas de informação, documentando requisitos, dados e processos.</p>
<p>Para ter sucesso em uma carreira em TI, é necessário ser proativo, criativo e estar sempre se atualizando. As empresas procuram profissionais com conhecimentos específicos e que possam agregar valor aos seus projetos.</p>
<p>Se você está pensando em seguir uma carreira em TI, é importante ter em mente que as <b>profissões em TI</b> exigem um alto nível de escolaridade. A maioria das áreas requer um diploma de ensino superior em TI ou áreas relacionadas.</p>
</div>
<h3 class="subtitle"> Profissões </h3>
<ol>
<li>Desenvolvedor Web</li>
<li>Analista de Sistemas</li>
<li>Arquiteto de Software</li>
<li>Gerente de Projeto</li>
</ol>
<p class="footer">Kauã Corrêa de Paula</p>
</html>