-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (60 loc) · 2.51 KB
/
index.html
File metadata and controls
68 lines (60 loc) · 2.51 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
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Francisco Lopes — Tech Blog</title>
<link rel="stylesheet" href="style/main.css">
<script src="scripts/main.js" defer></script>
</head>
<body>
<!-- ===== HEADER ===== -->
<header>
<h1>Francisco Lopes</h1>
<p class="subtitle">Computer Engineering • DevOps • Artificial Intelligence</p>
<nav>
<a href="index.html">Home</a>
<a href="posts.html">Articles</a>
</nav>
</header>
<!-- ===== CONTEÚDO PRINCIPAL ===== -->
<main>
<section class="intro card">
<h2>Welcome to My Technical Space</h2>
<p>
I am a student of the <strong>Bachelor’s degree in Computer, Networks and Telecommunications Engineering</strong>
at the <abbr title="Instituto Superior de Engenharia de Lisboa">Instituto Superior de Engenharia de Lisboa (ISEL)</abbr>,
with a strong interest in <strong>Artificial Intelligence</strong>, <strong>Software Development</strong>,
<strong>Cybersecurity</strong>, and <strong>Telecommunications</strong>.
</p>
<p>
Throughout my academic journey, I have been building skills in <strong>programming</strong>,
<strong>computer networks</strong>, <strong>databases</strong>, and <strong>telecommunication systems</strong>,
aiming to apply my knowledge in practical projects that challenge my <strong>creativity</strong>,
<strong>analytical thinking</strong>, and <strong>problem-solving</strong> abilities.
</p>
<p>
I am driven by <strong>continuous learning</strong> and a desire to explore
<strong>innovative technological solutions</strong> that can have a positive impact on society.
I enjoy collaborating on projects that allow me to experiment with new ideas,
develop practical skills, and contribute to solutions that improve people’s lives
or transform processes in meaningful ways.
</p>
<p>
In this blog, I share insights, projects, and reflections on technology — presented in a clear and practical manner.
</p>
<div class="links">
<a href="posts.html" class="btn">View Articles</a>
</div>
</section>
</main>
<!-- ===== FOOTER ===== -->
<footer>
<p>© 2025 Francisco Lopes — All rights reserved</p>
<p>
<a href="https://github.com/franciscolopes" target="_blank">GitHub</a> ·
<a href="https://www.linkedin.com/in/francisco-lopes" target="_blank">LinkedIn</a> ·
</p>
</footer>
</body>
</html>