-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (115 loc) · 3.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Curriculum Vitae</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Tomás Santos</h1>
<nav id="nav_container">
<ul>
<li><a href="#descricao"><b>Sobre mim</b></a></li>
<li><a href="#educacao"><b>Educação</b></a></li>
<li><a href="#exp"><b>Experiência</b></a></li>
<li><a href="#compt"><b>Competências</b></a></li>
<li><a href="#glossario"><b>Glossário</b></a></li>
<li><a href="#contacto"><b>Contacto</b></a></li>
</ul>
</nav>
</header>
<br>
<br>
<div id="containerIMG">
<img src="assets2/img1.png" width="180px">
</div>
<br>
<div id="descricao">
<p>Olá, sou o Tomás Santos, um programador e entusiasta pelo desenvolvimento de jogos.
</p>
<p>Tenho experiência em desenvolvimento front-end e back-end com HTML, CSS e JavaScript, C++ e C#</p>
</div>
<div>
<h3 id="educacao">Educação</h3>
</div>
<div id="line"></div>
<div id="tableDiv">
<table border="1">
<tr>
<th>Instituição</th>
<th>Curso</th>
<th>Ano de Conclusão</th>
</tr>
<tr>
<td>Escola Secundária Raul Proença</td>
<td>Ensino Secundário</td>
<td>2024</td>
</tr>
</table>
</div>
<br>
<br>
<div>
<h3 id="exp">Experiência</h3>
</div>
<div id="line"></div>
<div id="expTableDiv">
<table border="1">
<tr>
<th>Tipo</th>
<th>Função</th>
<th>Duração</th>
</tr>
<tr>
<td>Estágio</td>
<td>Desenvolvimento de Jogos em Web</td>
<td>300 horas</td>
</tr>
</table>
</div>
<br>
<br>
<div>
<h3 id="compt">Competências</h3>
</div>
<div id="line"></div>
<div id="compList">
<ul>
<li>C++</li>
<li>C#</li>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>MySQL</li>
<li>Blender</li>
<li>Photoshop</li>
</ul>
</div>
<br>
<div>
<h3 id="glossario">Glossário</h3>
</div>
<div id="line"></div>
<dl id="glossario">
<dt>HTML:</dt>
<dd>HyperText Markup Language - liguagem de marcação para construção de páginas web.</dd>
<dt>CSS:</dt>
<dd>Cascadian Style Sheets - Linguagem de estilos utilizada para definir a aparência de páginas web</dd>
</dl>
<br>
<div>
<h3 id="contacto">Contacto</h3>
</div>
<div id="line"></div>
<div id="contact">
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
<footer>
<p>© 2024 Tomás Santos. Todos os direitos reservados.</p>
<a href="">Linkedin</a>
<a href="">Github</a>
</footer>
</body>
</html>