index.html atualizado
This commit is contained in:
141
index.html
141
index.html
@@ -4,48 +4,19 @@
|
|||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Página de Perfil</title>
|
<title>Página de Perfil</title>
|
||||||
<style>
|
<!-- Styles -->
|
||||||
body {
|
<link rel="stylesheet" href="profile-styles.css" />
|
||||||
font-family: Arial, sans-serif;
|
|
||||||
margin: 0;
|
<!-- Favicon -->
|
||||||
background-color: #f4f4f4;
|
<link rel="icon" href="favicon.ico" />
|
||||||
}
|
<link rel="shortcut icon" href="favicon.svg" type="image/svg" />
|
||||||
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>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<h1>Perfil de Luís Carlos Alves</h1>
|
<div class="logo">📇</div>
|
||||||
|
<div class="content">
|
||||||
|
<h1>Página de Perfil</h1>
|
||||||
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<nav>
|
<nav>
|
||||||
@@ -55,20 +26,92 @@
|
|||||||
<a href="#contactos">Contactos</a>
|
<a href="#contactos">Contactos</a>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<section id="identificacao">
|
<section id="identificacao" style="display: flex">
|
||||||
|
<div style="flex-grow: 2">
|
||||||
<h2>Identificação</h2>
|
<h2>Identificação</h2>
|
||||||
<p>Nome: Luís Carlos Alves</p>
|
<p>Nome: Luís Carlos Alves</p>
|
||||||
<p>Idade: 52 anos</p>
|
<p>Idade: 52 anos</p>
|
||||||
<p>Localização: Castelo Branco, Portugal</p>
|
<p>Localização: Castelo Branco, Portugal</p>
|
||||||
|
</div>
|
||||||
|
<img style="transform: rotateY(180deg); margin: 0.5rem" width="300em" src="images/profile.webp" />
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="habilitacoes">
|
<section id="formacao">
|
||||||
<h2>Habilitações</h2>
|
<h2>Calendário da Formação</h2>
|
||||||
<ul>
|
<table class="schedule" style="margin: 1em auto">
|
||||||
<li>Ensino Secundário</li>
|
<colgroup>
|
||||||
<li>UC00622-Criar aplicações em HTML5</li>
|
<col width="1.2em" />
|
||||||
<li>HTML, CSS e JavaScript</li>
|
<col width="320em" />
|
||||||
</ul>
|
<col width="150em" span="3" />
|
||||||
|
</colgroup>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Sessão</th>
|
||||||
|
<th>Data</th>
|
||||||
|
<th>Início</th>
|
||||||
|
<th>Termino</th>
|
||||||
|
<th>Duração</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>1</td>
|
||||||
|
<td>quarta, 15 de abril de 2026</td>
|
||||||
|
<td>19:30</td>
|
||||||
|
<td>22:30</td>
|
||||||
|
<td>03h00</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>2</td>
|
||||||
|
<td>quarta, 22 de abril de 2026</td>
|
||||||
|
<td>19:30</td>
|
||||||
|
<td>22:30</td>
|
||||||
|
<td>03h00</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>3</td>
|
||||||
|
<td>quarta, 29 de abril de 2026</td>
|
||||||
|
<td>19:30</td>
|
||||||
|
<td>22:30</td>
|
||||||
|
<td>03h00</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>4</td>
|
||||||
|
<td>segunda, 4 de maio de 2026</td>
|
||||||
|
<td>19:30</td>
|
||||||
|
<td>22:30</td>
|
||||||
|
<td>03h00</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>quarta, 6 de maio de 2026</td>
|
||||||
|
<td>19:30</td>
|
||||||
|
<td>22:30</td>
|
||||||
|
<td>03h00</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>6</td>
|
||||||
|
<td>segunda, 11 de maio de 2026</td>
|
||||||
|
<td>19:30</td>
|
||||||
|
<td>22:30</td>
|
||||||
|
<td>03h00</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>7</td>
|
||||||
|
<td>quarta, 13 de maio de 2026</td>
|
||||||
|
<td>19:30</td>
|
||||||
|
<td>22:30</td>
|
||||||
|
<td>03h00</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>8</td>
|
||||||
|
<td>segunda, 18 de maio de 2026</td>
|
||||||
|
<td>19:30</td>
|
||||||
|
<td>23:30</td>
|
||||||
|
<td>04h00</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="interesses">
|
<section id="interesses">
|
||||||
@@ -95,8 +138,8 @@
|
|||||||
<address id="contactos">
|
<address id="contactos">
|
||||||
<h2>Contactos</h2>
|
<h2>Contactos</h2>
|
||||||
<p>Email: <a href="mailto:alves.lcc@hotmail.com">alves.lcc@hotmail.com</a></p>
|
<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>Telefone: <a href="tel:+351966330454">966 330 454</a></p>
|
||||||
<p>Gitea: <a href="https://git.pinhalfer.pt/alves.lcc">git.pinhalfer.pt/alves.lcc</a></p>
|
<p></p>
|
||||||
</address>
|
</address>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
|
|||||||
Reference in New Issue
Block a user