-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (40 loc) · 1.35 KB
/
index.html
File metadata and controls
41 lines (40 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Eva Lugo</title>
<link rel="stylesheet" href="./labs/3/styles.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Alice&display=swap" rel="stylesheet">
</head>
<body class="index">
<div class="center">
<div class="center-content">
<h1>Eva Lugo</h1>
<div class="buttons">
<a href="./labs/3/aboutme.html">
About Me <i class="fa-solid fa-user"></i>
</a>
<a href="./labs/3/resume.html">
Resume <i class="fa-solid fa-file"></i>
</a>
<a href="./labs/3/projects.html">
Projects <i class="fa-solid fa-code"></i>
</a>
<a href="./labs/3/labs.html">
Labs <i class="fa-solid fa-folder"></i>
</a>
<a href="https://github.com/evallugo" target="_blank" rel="noopener noreferrer">
GitHub <i class="fa-brands fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/eva-lugo" target="_blank" rel="noopener noreferrer">
LinkedIn <i class="fa-brands fa-linkedin"></i>
</a>
</div>
</div>
</div>
<div class="footer">
© 2025 Eva Lugo. All rights reserved.
</div>
</body>
</html>