107 lines
2.4 KiB
HTML
107 lines
2.4 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 Perfil</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
background-color: #f4f4f4;
|
|
}
|
|
header {
|
|
background-color: #333;
|
|
color: white;
|
|
padding: 15px;
|
|
text-align: center;
|
|
font-size: 120%;
|
|
}
|
|
nav {
|
|
background-color: #555;
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
nav a {
|
|
color: white;
|
|
margin: 0 10px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
address,
|
|
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>Perfil de Luís Carlos Alves</h1>
|
|
</header>
|
|
|
|
<nav>
|
|
<a href="#identificacao">Identificação</a>
|
|
<a href="#formacao">Formação</a>
|
|
<a href="#interesses">Interesses</a>
|
|
<a href="#contactos">Contactos</a>
|
|
</nav>
|
|
|
|
<section id="identificacao">
|
|
<h2>Identificação</h2>
|
|
<p>Nome: Luís Carlos Alves</p>
|
|
<p>Idade: 52 anos</p>
|
|
<p>Localização: Castelo Branco, Portugal</p>
|
|
</section>
|
|
|
|
<section id="habilitacoes">
|
|
<h2>Habilitações</h2>
|
|
<ul>
|
|
<li>Ensino Secundário</li>
|
|
<li>UC00622-Criar aplicações em HTML5</li>
|
|
<li>HTML, CSS e JavaScript</li>
|
|
</ul>
|
|
</section>
|
|
|
|
<section id="interesses">
|
|
<h2>Interesses</h2>
|
|
<ul>
|
|
<li>Sistemas de ficheiros</li>
|
|
<li>Contentores linux</li>
|
|
<li>Virtualização</li>
|
|
<li>Redes Informáticas</li>
|
|
</ul>
|
|
<h2>Controlos de Média</h2>
|
|
<h3>Áudio</h3>
|
|
<audio controls>
|
|
<source src="media/audio.aac" type="audio/aac" />
|
|
O seu navegador não suporta áudio.
|
|
</audio>
|
|
<h3>Vídeo</h3>
|
|
<video controls width="600" poster="media/video.webp">
|
|
<source src="media/video.mp4" type="video/mp4" />
|
|
O seu navegador não suporta vídeo.
|
|
</video>
|
|
</section>
|
|
|
|
<address id="contactos">
|
|
<h2>Contactos</h2>
|
|
<p>Email: <a href="mailto:alves.lcc@hotmail.com">alves.lcc@hotmail.com</a></p>
|
|
<p>Telefone: <a href="tel:+351966334455">966 334 455</a></p>
|
|
<p>Gitea: <a href="https://git.pinhalfer.pt/alves.lcc">git.pinhalfer.pt/alves.lcc</a></p>
|
|
</address>
|
|
|
|
<footer>
|
|
<p>© 2026 - ScrambledTech, Inc.</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|