-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
56 lines (44 loc) · 2.34 KB
/
about.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
<!DOCTYPE html>
<html lang="pt-br">
<!-- Este código é baseado no curso "HTML e CSS: Classes, posicionamento e Flexbox da Alura -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About me</title>
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<header class="cabecalho">
<nav class="cabecalho__menu">
<a class="cabecalho__menu__link" href="index.html">Home</a>
<a class="cabecalho__menu__link" href="about.html">About me</a>
<a class="cabecalho__menu__link" href="resume.html">Resume</a>
</nav>
</header>
<main class="apresentacao">
<section class="apresentacao__conteudo">
<h1 class="apresentacao__conteudo__titulo">About me</h1>
<p class="apresentacao__conteudo__texto">
I am a radiologist with more than 25 years of experience in the sector, and for 2 of these years I was in a position of coordinating medical teams. Both in caring for patients and in dealing with co-workers, I developed communication, teamwork and administration skills.
</p>
<p class="apresentacao__conteudo__texto">
I am currently in a career transition, moving to the Web Development area.
</p>
<p class="apresentacao__conteudo__texto">
Recently I have been dedicating myself to learning and improving related skills and stacks.
</p>
<p class="apresentacao__conteudo__texto">
My areas of study and training include HTML, CSS, JavaScript, TypeScript, Python, SQL, React and Angular.
</p>
<p class="apresentacao__conteudo__texto">
Studying and learning new things is a passion I have had since childhood. Whether through attending to courses or going self-taught, I will always be looking for something new to add to my knowledge!
</p>
</section>
<img src="./assets/assets/Foto_Carlos_25072023.jpg" alt="Foto do Carlos" class="apresentacao__foto">
</main>
<footer class="rodape">
<p>Developed by Carlos Vaz Porto</p>
</footer>
</body>
</html>