-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathalan.html
More file actions
97 lines (84 loc) · 2.36 KB
/
alan.html
File metadata and controls
97 lines (84 loc) · 2.36 KB
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Alan Neves - Estagiário</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
color: white;
text-align: center;
padding: 50px 20px;
}
h1 {
font-size: 3em;
margin-bottom: 0.3em;
}
.subtitle {
font-size: 1.5em;
color: #ccc;
margin-bottom: 2em;
}
.photo {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
margin-bottom: 1.5em;
}
.intro {
max-width: 600px;
margin: 0 auto 2em auto;
font-size: 1.2em;
line-height: 1.6;
}
a.github-link {
display: inline-block;
margin-top: 1em;
padding: 10px 20px;
background-color: #1DB954;
color: white;
text-decoration: none;
font-weight: bold;
border-radius: 30px;
transition: background-color 0.3s ease;
}
a.github-link:hover {
background-color: #1aa34a;
}
footer {
margin-top: 4em;
font-size: 0.9em;
color: #aaa;
}
/* Animação de entrada */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.container {
animation: fadeIn 1s ease-in;
}
</style>
</head>
<body>
<div class="container">
<img src="https://github.com/alan-neves.png" alt="Foto de Alan" class="photo">
<!-- Substitua "yourgithubID" pelo seu ID do GitHub para puxar a foto direto de lá, ou use outra URL -->
<h1>Olá, devs!</h1>
<div class="subtitle">Boas vindas ao meu espaço :)</div>
<p class="intro">
Me chamo <strong>Alan Neves</strong> e sou estagiário em Desenvolvimento de Sistemas na STI-FFLCH.
Atualmente estou aprendendo análise de projetos e desenvolvimento de sistemas, bancos de dados, sistemas embarcados, programação de aplicativos mobile e desenvolvimento web.
</p>
<a class="github-link" href="https://github.com/alan-neves" target="_blank">Visite meu GitHub</a>
<footer>
Alan Neves | 2025
</footer>
</div>
</body>
</html>