-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
78 lines (78 loc) · 3.22 KB
/
portfolio.html
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
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html>
<head>
<title>Amogh's Portfolio</title>
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Personal Website</title>
<link rel="stylesheet" href="styles.css" />
</head>
</head>
<body>
<nav class="navbar">
<h1 class="logo">
<a href="index.html">Amogh's Great Website</a>
<a href="index.html"><div class="logo"></div></a>
</h1>
<ul 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>
</ul>
</nav>
<main>
<h1 class="page-title">Portfolio</h1>
<div class="project">
<a href="index.html">
<img src="WWY.jpg" alt="Same photo as before" width="400" height="300">
</a>
<div class="project-details">
<p class="project-name">Amogh's Great Website</p>
<p class="project-description"> This is my first website and I hope you enjoy it.
I made it through HTML and the help of the Hack4Impact Starter Pack!</p>
<a href="index.html">Learn More</a>
</div>
</div>
<div class="project">
<a href="https://github.com/Amogh76/Olympic_Rings">
<img src="Olympicrings.png" alt="USA flag as well" width="400" height="300">
</a>
<div class="project-details">
<p class="project-name">Olympic Rings Project</p>
<p class="project-description"> The goal of this project was to draw the American flag and the Olympic rings using python.
My code used the built in turtle function to draw the flag. It used a drawcircle function I made in order to draw the rings.
Additionally, I manipulated the turtle into having a map of the US as a backdrop. </p>
<a href="https://github.com/Amogh76/Olympic_Rings"">Learn More</a>
</div>
</div>
<div class="project">
<a href="https://github.com/Amogh76/Mortgage-GUI">
<img src="MortgageGUI.png" alt="Mortgage calculator" width="400" height="300">
</a>
<div class="project-details">
<p class="project-name">Mortgage GUI Project</p>
<p class="project-description"> For this project I created a basic UI within the IDLE Shell that could calculate mortgage
and compound interest using python functions/libraries. Still working out some bugs.
</p>
<a href="https://github.com/Amogh76/Mortgage-GUI">Learn More</a>
</div>
</div>
<div class="project">
<a href="https://www.figma.com/proto/oxWwOXFNJELDARRafo1iHj/studybuddy?node-id=3-197&t=xsOxOknbsgF2XH3H-1&starting-point-node-id=3%3A197">
<img src="Figma.png" alt="Study Buddy app" width="400" height="300">
</a>
<div class="project-details">
<p class="project-name">Study Buddy App</p>
<p class="project-description"> For this project I made an app that can function as a study buddy finder.
It will solve the issue of introverted students that struggle ask for help when they need assistance in their studies.
</p>
<a href="https://www.figma.com/proto/oxWwOXFNJELDARRafo1iHj/studybuddy?node-id=3-197&t=xsOxOknbsgF2XH3H-1&starting-point-node-id=3%3A197">Learn More</a>
</div>
</div>
<footer class="footer">© 2024 Amogh's Great Website | All Rights Reserved</footer>
</main>
</body>
</html>