94 lines
1.9 KiB
HTML
94 lines
1.9 KiB
HTML
<!doctype html>
|
|
<html lang="pt">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Página de Apresentação</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
background-color: #f4f4f4;
|
|
}
|
|
header {
|
|
background-color: #333;
|
|
color: white;
|
|
padding: 15px;
|
|
text-align: center;
|
|
}
|
|
nav {
|
|
background-color: #555;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
nav a {
|
|
color: white;
|
|
margin: 0 10px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
section {
|
|
padding: 20px;
|
|
margin: 15px;
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
}
|
|
footer {
|
|
text-align: center;
|
|
padding: 10px;
|
|
background-color: #333;
|
|
color: white;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Página de Apresentação</h1>
|
|
</header>
|
|
|
|
<nav>
|
|
<a href="#identificacao">Identificação</a>
|
|
<a href="#habilitacoes">Habilitações</a>
|
|
<a href="#interesses">Interesses</a>
|
|
<a href="#contactos">Contactos</a>
|
|
</nav>
|
|
|
|
<section id="identificacao">
|
|
<h2>Identificação</h2>
|
|
<p>Nome: João Silva</p>
|
|
<p>Idade: 25 anos</p>
|
|
<p>Localização: Portugal</p>
|
|
</section>
|
|
|
|
<section id="habilitacoes">
|
|
<h2>Habilitações</h2>
|
|
<ul>
|
|
<li>Licenciatura em Engenharia Informática</li>
|
|
<li>Curso de Desenvolvimento Web</li>
|
|
<li>Certificação em HTML, CSS e JavaScript</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section id="interesses">
|
|
<h2>Interesses</h2>
|
|
<ul>
|
|
<li>Programação</li>
|
|
<li>Tecnologia</li>
|
|
<li>Leitura</li>
|
|
<li>Viagens</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section id="contactos">
|
|
<h2>Contactos</h2>
|
|
<p>Email: joao@email.com</p>
|
|
<p>Telefone: 912 345 678</p>
|
|
<p>LinkedIn: linkedin.com/in/joaosilva</p>
|
|
</section>
|
|
|
|
<footer>
|
|
<p>© 2026 - João Silva</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|