-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
134 lines (126 loc) · 5.4 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Lições aprendidas - Trybe!</title>
<link rel="shortcut icon" href="./favicon.ico" />
</head>
<body>
<header id="cabecalho">
<h1 id="titulo">Lições aprendidas -<a href="https://www.betrybe.com/" target="_blank">Trybe!<img src="./img/trybe_logo.png" alt="Logo trybe" width=45px></a></h1>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="#listas_licoes">Lições</a></li>
<li><a href="#aprendizado">Aprendizado</a></li>
<li><a href="#tabela">Linguagens</a></li>
</ul>
</nav>
</header>
<main>
<section class="quem_sou_eu">
<div id="img_container">
<img src="./img/20210404_232550-min.jpg" alt="foto de Miguel Retroz" id="minha_foto" width="300px">
</div>
<div id="descricao">
<h1>Quem sou eu?</h1>
<div id="paragrafo">
<p> Olá!<br>Eu sou Miguel Retroz, tenho 20 anos e vivo em Sorocaba - SP.<br>
Sou estudande de desenvolvimento web pela Trybe!<br>
É um prazer tê-lo(a) aqui!
</p>
</div>
</div>
<div class="clear"></div>
</section>
<section id="listas_licoes">
<h1>Lições</h1>
<h2>Aprendidas</h2>
<h2>A aprender</h2>
<div>
<ol id="licoes_aprendidas">
<li>Slack</li>
<li>Zoom</li>
<li>Unix</li>
<li>Bash</li>
<li>Git</li>
<li>GitHub</li>
<li>Funcionamento da Internet</li>
<li>HTML</li>
<li>CSS</li>
<li>HTML Semântico</li>
</ol>
<ul id="licoes_a_aprender">
<li>OOP</li>
<li>JS</li>
<li>ES6</li>
<li>React</li>
<li>Node</li>
<li>Python</li>
<li>SQL</li>
<li>DOM</li>
<li>CSS Resposivo</li>
<li>JS Assíncrono</li>
</ul>
<div class="clear"></div>
</div>
<div class="clear"></div>
</section>
<section id="aprendizado">
<article class="lado-esquerdo">
<h1>Aprendizado</h1>
<p>Está página foi toda construída e estilizada utilizando conhecimentos adquiridos com duas semanas e meia de estudos na Trybe.<br> Após alguns cd, touch, git status, git diff, git add, git commit e git push o resultado foi este.Foi utilizado apenas HTML e CSS, nada de um tal de JavaScript, ainda.<br> Foi um projeto bem legal, que deu para por em prática os conhecimentos adquiridos neste tempo de curso.</p>
</article>
<section class="lado-direito">
<aside>
<p>Tive um pouco de dificuldade para me adaptar no início com Linux. Até por que desde o primeiro contato que tive com computadores, isso lá por volta de 2008, os SOs eram sempre os do Tio Bill. Mas as coisas vêm caminhando muito bem.</p>
</aside>
</section>
<div class="clear"></div>
</section>
<section id='tabela' class="container_tabela">
<h1>Linguagens de programação que já tive(ou não) contato</h1>
<table border="1">
<tr>
<th></th>
<th>C#</th>
<th>Java</th>
<th>JS</th>
<th>C++</th>
<th>PHP</th>
<th>VB</th>
<th>C</th>
<th>Python</th>
</tr>
<tr>
<td style="font-weight: 600;">Sim</td>
<td>X</td>
<td></td>
<td>X</td>
<td>X</td>
<td></td>
<td></td>
<td></td>
<td>X</td>
</tr>
<tr>
<td style='font-weight: 600;'>Não</td>
<td></td>
<td>X</td>
<td></td>
<td></td>
<td>X</td>
<td>X</td>
<td>X</td>
<td></td>
</tr>
</table>
<div class="clear"><p></p></div>
</section>
</main>
<footer id="rodape">
<h1>© Miguel Retroz 2021</h1>
</footer>
</body>
</html>