-
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.2 KB
/
index.html
File metadata and controls
42 lines (37 loc) · 1.2 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>Home | Chris Panetta</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>Chris Panetta</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Me</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact Me</a>
<a href="github.html">GitHub</a>
</nav>
</div>
</header>
<section id="home">
<div class="container">
<details>
<summary><h2>Welcome to My Portfolio</h2></summary>
<p>I'm Chris Panetta and I am in Networking & IT Security. To find out more about me, click on one of the options above.</p>
</details>
</div>
</section>
<footer>
<div class="container">
<p>Contact me at: <a href="mailto:[email protected]">[email protected]</p>
<p>© 2024 Chris Panetta. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>