-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (31 loc) · 1.1 KB
/
index.html
File metadata and controls
32 lines (31 loc) · 1.1 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
<!-- TODO 1: Create the HTML Boilerplate -->
<doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
</head>
<body>
<h1>My Portfolio</h1>
<main>
<section class="project">
<a href="public/movie-ranking.html"><h2>Movie Ranking Project</h2></a>
<img src="assets/images/movie-ranking.png" alt="Project 1 Preview" height="200">
</section>
<section class="project">
<a href="public/birthday-invite.html"><h2>Birthday Invite</h2></a>
<img src="assets/images/birthday-invite.png" alt="Project 2 Preview" height="200">
</section>
<!-- Add more projects as needed -->
</main>
<footer>
<p>© 2024 My Portfolio</p>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="public/about.html">About Me</a></li>
<li><a href="public/contact.html">Contact Me</a></li>
</ul>
</footer>
</html>
<!-- TODO 7: Add the Contact Me and About Me page links -->