-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
55 lines (52 loc) · 1.81 KB
/
about.html
File metadata and controls
55 lines (52 loc) · 1.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>About Me | 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="about">
<div class="container">
<h2>About Me</h2>
<img src="chris.jpg" alt="Chris Panetta" class="portrait" />
<p>
Hi, My name is Chris Panetta, and I love to code and work with
servers. I am pursuing a role in Networking and IT Security. Below is
my favourite spotify Playlist.
</p>
<!-- This code was taken from Spotify Embedding. It takes the code from the Spotify Source Generator and pulls the request from their embedder generator -->
<iframe
style="border-radius: 12px"
src="https://open.spotify.com/embed/playlist/6xPJM7WwnglzCT28GrMhiB?utm_source=generator"
width="100%"
height="152"
allow="autoplay; fullscreen; picture-in-picture"
></iframe>
<p>Below is a video about me</p>
<video width="500" height="500" controls preload poster="chris.jpg">
<source src="chris.mp4" type="video/mp4" />
</video>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Chris Panetta. All Rights Reserved.</p>
</div>
</footer>
</body>
</html>