forked from Ada-C13/personal-portfolio-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
105 lines (88 loc) · 4.53 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css2?family=Martel:wght@200;300;400;600;700;800;900&family=Sen:wght@400;700&display=swap" rel="stylesheet">
<title>Projects - Becca Roach Portfolio</title>
<link href="styles/portfolio_style.css" rel="stylesheet">
</head>
<body>
<header>
<nav class="top-nav">
<h4><a href="./index.html">Becca Roach</a></h4>
<ul class="nav-flex">
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./portfolio.html">Projects</a></li>
<li><a href="./hobby-blog.html">Extras</a></li>
<li><a href="#bottom">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- Projects section -->
<!-- Props to this website for building the Github card previewer: https://gh-card.dev/ -->
<section class="all-project-tiles">
<section class="inner-project-wrapper">
<article class="project-tile">
<a href="https://github.com/RebeccaRoach/slack-cli" target="_blank">
<img src="https://gh-card.dev/repos/RebeccaRoach/slack-cli.svg?link_target=_blank" alt="github slack cli card" class="project-image">
<p class="project-title">Slack CLI</p>
</a>
</article>
<article class="project-tile">
<a href="https://github.com/RebeccaRoach/hotel" target="_blank">
<img src="https://gh-card.dev/repos/RebeccaRoach/hotel.svg?link_target=_blank" alt="github hotel card" class="project-image">
<p class="project-title">Hotel</p>
</a>
</article>
<article class="project-tile">
<a href="https://github.com/RebeccaRoach/grocery-store" target="_blank">
<img src="https://gh-card.dev/repos/RebeccaRoach/grocery-store.svg?link_target=_blank" alt="github grocery-store card" class="project-image">
<p class="project-title">Grocery Store</p>
</a>
</article>
<article class="project-tile">
<a href="https://github.com/RebeccaRoach/adagrams" target="_blank">
<img src="https://gh-card.dev/repos/RebeccaRoach/adagrams.svg?link_target=_blank" alt="github adagrams card" class="project-image">
<p class="project-title">Adagrams</p>
</a>
</article>
<article class="project-tile">
<a href="https://github.com/RebeccaRoach/ride-share" target="_blank">
<img src="https://gh-card.dev/repos/RebeccaRoach/ride-share.svg?link_target=_blank" alt="github rideshare card" class="project-image">
<p class="project-title">Rideshare</p>
</a>
</article>
<article class="project-tile">
<a href="https://github.com/RebeccaRoach/baking-documentation-page" target="_blank">
<img src="https://gh-card.dev/repos/RebeccaRoach/baking-documentation-page.svg?link_target=_blank" alt="github technical documentation card" class="project-image">
<p class="project-title">(Baking) Documentation Page</p>
</a>
</article>
<article class="project-tile">
<a href="https://github.com/RebeccaRoach/quote-machine" target="_blank">
<img src="https://gh-card.dev/repos/RebeccaRoach/quote-machine.svg?link_target=_blank" alt="github quote-machine card" class="project-image">
<p class="project-title">Random Quote Machine</p>
</a>
</article>
<article class="project-tile">
<a href="https://github.com/RebeccaRoach/markdown-editor" target="_blank">
<img src="https://gh-card.dev/repos/RebeccaRoach/markdown-editor.svg?link_target=_blank" alt="github markdown-editor card" class="project-image">
<p class="project-title">Markdown Editor and Previewer</p>
</a>
</article>
</section>
</section>
</main>
<footer id="bottom">
<section class="footer-wrapper">
<section class="inner-footer-wrapper">
<a href="https://www.linkedin.com/in/the-rebecca-roach/" target=_blank><img id="linkedin-logo" src="./images/linked_in_logo.png" alt="LinkedIn logo"></a>
<h3>rebeccaroach12@gmail.com</h3>
<a href="https://github.com/RebeccaRoach" target=_blank><img id="github-logo" src="./images/github_logo.png" alt="Github logo"></a>
</section>
</section>
</footer>
</body>
</html>