-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
58 lines (57 loc) · 2.57 KB
/
portfolio.html
File metadata and controls
58 lines (57 loc) · 2.57 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
<!DOCTYPE html>
<html>
<head>
<title>Ivan's Portfolio</title>
<link rel="stylesheet" href="full_styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Ivan Alvarez</a>
</h1>
<u1 class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</u1>
</nav>
<main>
<h1 class="page-title">My Portfolio</h1>
<div class="project">
<a href="index.html">
<img src="./professional.jpeg" alt="A picture of my website" width="750" height="500">
</a>
<div class="project-details">
<p class="project-name"><strong>Ivan's Website</strong></p>
<p class="project-description">This website was programmed for my Hack4Impact Starter Project!</p>
<a href="index.html">Learn More</a>
</div>
</div>
<div class="project">
<a href="https://users.csc.calpoly.edu/~ialvar15/">
<img src="CSC123_Website.png" alt="A picture of my CSC 123 website" width="500" height="500">
</a>
<div class="project-details">
<p class="project-name"><strong>CSC 123 Website</strong></p>
<p class="project-description">This website is a portfolio of all my labs for CSC 123</p>
<a href="https://users.csc.calpoly.edu/~ialvar15/">Learn More</a>
</div>
</div>
<div class="project">
<a href="https://editor.p5js.org/22ivana04/full/_KJz2BP6O">
<img src="Slithy's_Revenge_Title.png" alt="A picture of my video game" width="550" height="500">
</a>
<div class="project-details">
<p class="project-name"><strong>Slithy's Revenge</strong></p>
<p class="project-description">This game was my final project for CSC 123 coded with p5.js</p>
<a href="https://editor.p5js.org/22ivana04/full/_KJz2BP6O">Learn More</a>
</div>
</div>
</main>
<footer class="footer">
© 2023 Ivan's Portfolio | All Rights Reserved
</footer>
</body>
</html>