-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (37 loc) · 1.48 KB
/
index.html
File metadata and controls
42 lines (37 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="resume.html">Resume</a></li>
</ul>
</nav>
</header>
<main>
<section id="centered">
<h3>Welcome to Fabiano's Portfolio</h3>
<p>I'm a passionate data scientist and sports medicine physician with a knack for bringing ideas to life.</p>
</section>
<section id="centered">
<!-- Projects Link -->
<a href="projects.html"><img src="images/projects.svg" alt="Projects" style="width:100px; height:100px;"></a>
<!-- Resume Link -->
<a href="resume.html"><img src="images/resume.svg" alt="Resume" style="width:100px; height:100px;"></a>
</section>
</main>
<footer>
<p>© 2024 Developed by Fabiano Araujo</p>
</footer>
</body>
</html>