-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperiencia-profissional.html
141 lines (124 loc) · 5.29 KB
/
experiencia-profissional.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minhas Experiências</title>
<link rel="stylesheet" href="css/css-geral.css">
</head>
<body>
<!-- Cabeçalho/Navegação -->
<header>
<h1>Página Pessoal</h1>
<nav class="formatacao-header">
<a href="index.html">Home</a>
<a href="experiencia-profissional.html">Minhas Experiências</a>
<a href="hobbies.html">Meus Hobbies</a>
</nav>
</header>
<!-- Corpo principal do site -->
<main>
<div style="margin-left: 30%;"">
<h3 style="margin-left: 120px;">Experiências profissionais</h3>
<table>
<thead>
<tr>
<th>Data</th>
<th>Função</th>
</tr>
</thead>
<tbody>
<tr>
<td>Mai de 2022 - Set de 2022 · 5 meses</td>
|
<td>Estagiário de DBA pela Procenge</td>
</tr>
</tbody>
</table>
</div>
<div style="margin-left: 30%; padding: 20px;">
<h3>Meus conhecimentos</h3>
<ul>
<li>Python</li>
<li>Linguagem C</li>
<li>Linux</li>
<li>Redes de Computadores</li>
<li>Conceitos fundamentais de cibersegurança</li>
<li>Web Hacking</li>
<li>Webscraping</li>
<li>Html e CSS</li>
</ul>
</div>
<h3 style="font-size: 40px; text-align: center;">Cursos Complementares</h3>
<section class="experiencias">
</section>
<section>
<!-- Div Badge 1 -->
<article>
<p>Cisco: Conceitos Básicos de Redes</p>
<div data-iframe-width="150" data-iframe-height="270" data-share-badge-id="a2476df9-61a5-430f-a00f-ac6a0209c95e" data-share-badge-host="https://www.credly.com"></div><script type="text/javascript" async src="//cdn.credly.com/assets/utilities/embed.js"></script>
</article>
<!-- Div Badge 2 -->
<article>
<p>Cisco: Introcução à Cibersegurança</p>
<div data-iframe-width="150" data-iframe-height="270" data-share-badge-id="d9bc588d-5483-47c8-9cd4-fb51bd75c899" data-share-badge-host="https://www.credly.com"></div><script type="text/javascript" async src="//cdn.credly.com/assets/utilities/embed.js"></script>
</article>
<!-- Div Badge 3 -->
<article>
<p>Cisco: Dispositivos de Rede e Configuração Inicial</p>
<div data-iframe-width="150" data-iframe-height="270" data-share-badge-id="b1bf5f9d-a643-422a-991a-30e6058a1a57" data-share-badge-host="https://www.credly.com"></div><script type="text/javascript" async src="//cdn.credly.com/assets/utilities/embed.js"></script>
</article>
</section>
<article><p>Técnicas de Invasão (TDI)</p></article>
<article><p>Treinamento Hacker Investigador (THI)</p></article>
</section>
</main>
<hr>
</body>
<!-- Rodapé da página -->
<footer class="footer">
<table style="border: none;">
<thead>
<tr>
<th>Me contate enviando uma mensagem:</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<label for="nome">Nome:</label>
</td>
<td>
<input type="text" name="nome" id="nome">
</td>
</tr>
<tr>
<td><label for="email">Seu E-mail:</label></td>
<td><input type="text" name="seuEmail" id="seuEmail"></td>
</tr>
<tr>
<td><label for="assunto">Assunto:</label></td>
<td>
<select name="assunto" id="assunto">
<option value="contatoPessoal">Contato Pessoal</option>
<option value="contatoProfissional">Contato Profissional</option>
</select>
</td>
</tr>
<tr>
<td><label for="data">Digite a data de hoje:</label></td>
<td>
<input type="datetime-local" name="dataAtual" id="dataAtual">
</td>
</tr>
<tr>
<td><label for="mensagem">Mensagem:</label></td>
<td>
<textarea name="mensagem" id="mensagem" cols="30" rows="10"></textarea>
<br><input type="submit" name="" value="Enviar Mensagem">
</td>
</tr>
</tbody>
</table>
</footer>
</html>