-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathportfolio.html
46 lines (44 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio</title>
<link rel="stylesheet" href="portfolio.css" />
<script src="portfolio.js"></script>
</head>
<!--Main Heading then 3 smaller sections with a heading, a paragraph, a picture, and a link-->
<body>
<header>Projects I've Worked on</header>
<h3>Grocery List Project</h3>
<p>
This project had me create a website for a grocery list using html and css
</p>
<div class="Grocery">
<a href="https://github.com/Ghcat0528/Grocery_list">Grocery Project</a>
</div>
<img src="Screenshot (16).png" />
<h3>Zoo Project</h3>
<p>
This project had me create lists, insert images, and use headings for a
zoo page
</p>
<div class="Zoo">
<a href="https://github.com/Ghcat0528/Zoo">Zoo Page</a>
</div>
<br />
<img src="Screenshot (17).png" />
<h3>Interesting project</h3>
<p>
This project taught me teamwork and working in a group towards a common
goal
</p>
<div class="Link">
<a href="https://dribbble.com/tags/project-page">Project Page</a>
</div>
<br />
<img
src="https://media.dev.to/cdn-cgi/image/width=1080,height=1080,fit=cover,gravity=auto,format=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fzbaylzi3lb2jpixr1epr.png"
/>
</body>
</html>