-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 2.29 KB
/
index.html
File metadata and controls
66 lines (66 loc) · 2.29 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
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Profile</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<img src="assets/photo.jpg" alt="Profile Picture" class="profile-pic">
<h1>Felica Pace</h1>
<p>Web Developer | Designer</p>
</div>
</header>
<section id="about">
<div class="container">
<h2>Discover Me</h2>
<p>Welcome to my website. A couple of things about me are that I love video games and hope to create my very own some day.I am fimilair with JavaScript and phython as well, but I still have so much to learn and experience. So follow me on my jurney as I grow.</p>
</div>
</section>
<section id="skills">
<div class="container">
<h2>Skills</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Python</li>
</ul>
</div>
</section>
<section id="projects">
<div class="container">
<h2>Projects</h2>
<div class="project">
<h3>Pizza ordering chatbot</h3>
<p>If you don't know how to make a pizza ordering chatbot, I can help you build one!</p>
</div>
<div class="project">
<h3>Line Calculator</h3>
<p>A simple line calculator that helps with basic mathematical operations.</p>
</div>
<div class="project">
<h3>Deck of Cards</h3>
<p>A simple deck of cards game built in Python.</p>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact</h2>
<p>Email: felicapace99@gmail.com</p>
<p>LinkedIn: <a href="#">linkedin.com/in/felicapace</a></p>
<p>GitHub: <a href="https://github.com/felicaHarris">github.com/felicapace</a></p>
</div>
</section>
<footer>
<div class="container">
<p>© 2026 Felica Pace. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>