-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (84 loc) · 2.59 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lucas Ligenza - Personal Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #b30000;
color: white;
padding: 1rem 0;
text-align: center;
}
nav {
background-color: #800000;
padding: 1rem;
text-align: center;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
section {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
}
footer {
background-color: #b30000;
color: white;
text-align: center;
padding: 1rem 0;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Lucas Ligenza</h1>
<p>Software Engineer | Penn State Student</p>
</header>
<nav>
<a href="#about">About Me</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</nav>
<section id="about">
<h2>About Me</h2>
<p>Hello! I'm Lucas Ligenza, a Software Engineer currently interning at Broadcom. I am a Penn State student pursuing a B.S. in Computer Science with a minor in Mathematics. I have a passion for developing efficient and innovative software solutions.</p>
</section>
<section id="portfolio">
<h2>Portfolio</h2>
<p>Here are some of my projects:</p>
<ul>
<li><strong>Project 1:</strong> Description of project 1.</li>
<li><strong>Project 2:</strong> Description of project 2.</li>
<li><strong>Project 3:</strong> Description of project 3.</li>
</ul>
</section>
<section id="contact">
<h2>Contact</h2>
<p>You can reach me at:</p>
<ul>
<li><strong>Email:</strong> [email protected]</li>
<li><strong>LinkedIn:</strong> <a href="https://www.linkedin.com/in/lucasligenza" target="_blank">Lucas Ligenza</a></li>
<li><strong>GitHub:</strong> <a href="https://github.com/lucasligenza" target="_blank">lucas-ligenza</a></li>
</ul>
</section>
<footer>
<p>© 2024 Lucas Ligenza</p>
</footer>
</body>
</html>