-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
208 lines (198 loc) · 7.3 KB
/
index.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- HTML Meta Tags -->
<title>Personal Portfolio</title>
<meta
name="description"
content="The place to show off and host my personal projects. :)"
/>
<!-- Facebook Meta Tags -->
<meta property="og:url" content="http://freecodecamp.redgummy.fish/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Personal Portfolio" />
<meta
property="og:description"
content="The place to show off and host my personal projects. :)"
/>
<meta
property="og:image"
content="http://freecodecamp.redgummy.fish/Assets/PreviewPortfolio.png"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="" />
<meta property="twitter:url" content="http://freecodecamp.redgummy.fish/" />
<meta name="twitter:title" content="Personal Portfolio" />
<meta
name="twitter:description"
content="The place to show off and host my personal projects. :)"
/>
<meta
name="twitter:image"
content="http://freecodecamp.redgummy.fish/Assets/PreviewPortfolio.png"
/>
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body>
<header>
<nav id="navbar">
<div class="navbar-section">
<a class="nav-link" href="#welcome-section">
<img
id="logo"
src="Assets/FishyConcreteNoBackground.png"
alt="Home"
/>
</a>
</div>
<div class="navbar-section">
<a class="nav-link" href="#projects">Projects</a>
<a
id="profile-link"
class="nav-link inline-logo"
href="https://github.com/neilrush"
target="_blank"
>GitHub <img class="logo" src="Assets/GitHub-Mark-Light-64px.png"
/></a>
<!--<a
class="nav-link inline-logo"
href="https://www.linkedin.com/in/neilrushmcpherson/"
>Linkedin
<img
src="https://content.linkedin.com/content/dam/me/business/en-us/amp/brand-site/v2/bg/LI-Bug.svg.original.svg"
/></a> -->
</div>
</nav>
</header>
<main>
<section id="welcome-section">
<!--Needed to pass testing but the page technically still has text-->
<h1 class="hidden" style="display: none">Hi, I'm Neil</h1>
<img
id="welcome-image"
src="Assets/Welcome Text.png"
alt="Hi, I'm Neil"
/>
</section>
<section id="projects">
<h1 class="section-title">Some of my projects</h1>
<div id="tribute-page" class="project-tile">
<h2 class="project-title">Tribte Page</h2>
<div class="project-render">
<img src="Assets/Project Renders/TributePage.png" />
</div>
<div class="project-links">
<a
class="project-link"
href="Responsive Web Design Projects/1. Tribute Page/Tribute.html"
>View</a
>
<a
class="project-link inline-logo"
href="https://github.com/neilrush/freecodecamp-projects/tree/main/Responsive%20Web%20Design%20Projects/1.%20Tribute%20Page"
>Source <img class="logo" src="Assets/GitHub-Mark-Light-64px.png"
/></a>
</div>
</div>
<div id="survey-form" class="project-tile">
<h2 class="project-title">Survey Page</h2>
<div class="project-render">
<img src="Assets/Project Renders/SurveyPage.png" />
</div>
<div class="project-links">
<a
class="project-link"
href="Responsive Web Design Projects/2. Survey Form/Survey.html"
>View</a
>
<a
class="project-link inline-logo"
href="https://github.com/neilrush/freecodecamp-projects/tree/main/Responsive%20Web%20Design%20Projects/2.%20Survey%20Form"
>Source <img class="logo" src="Assets/GitHub-Mark-Light-64px.png"
/></a>
</div>
</div>
<div id="Product Page" class="project-tile">
<h2 class="project-title">Product Page</h2>
<div class="project-render">
<img src="Assets/Project Renders/ProductPage.png" />
</div>
<div class="project-links">
<a
class="project-link"
href="Responsive Web Design Projects/3. Product Landing Page/Product-Page.html"
>View</a
>
<a
class="project-link inline-logo"
href="https://github.com/neilrush/freecodecamp-projects/tree/main/Responsive%20Web%20Design%20Projects/3.%20Product%20Landing%20Page"
>Source <img class="logo" src="Assets/GitHub-Mark-Light-64px.png"
/></a>
</div>
</div>
<div id="technical-documentation" class="project-tile">
<h2 class="project-title">Technical Documentation</h2>
<div class="project-render">
<img src="Assets/Project Renders/DocumentationPage.png" />
</div>
<div class="project-links">
<a
class="project-link"
href="Responsive Web Design Projects/4. Technical Documentation/Technical Documentation.html"
>View</a
>
<a
class="project-link inline-logo"
href="https://github.com/neilrush/freecodecamp-projects/tree/main/Responsive%20Web%20Design%20Projects/4.%20Technical%20Documentation"
>Source <img class="logo" src="Assets/GitHub-Mark-Light-64px.png"
/></a>
</div>
</div>
<div id="npc-dialog-log" class="project-tile">
<h2 class="project-title">Npc Dialog Log</h2>
<div class="project-render">
<img src="Assets/Project Renders/NPCDialogLog.png" />
</div>
<div class="project-links">
<a
class="project-link"
href="https://runelite.net/plugin-hub/show/npc-dialog-log"
>View</a
>
<a
class="project-link inline-logo"
href="https://github.com/neilrush/npc-dialog-log"
>Source <img class="logo" src="Assets/GitHub-Mark-Light-64px.png"
/></a>
</div>
</div>
</section>
<footer id="footer">
<div class="footer-section">
<img
class="footer-image"
src="Assets/Footer Text top.png"
alt="Thanks for stopping by"
/>
</div>
<div class="footer-section">
<a href="https://www.buymeacoffee.com/neilrush"
><img
class="footer-image"
src="Assets/Footer Text Bottom.png"
alt="Buy me a coffee."
/></a>
</div>
</footer>
</main>
<script>
const projectName = "portfolio";
localStorage.setItem("fCC_portfolio_hide", true);
</script>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</body>
</html>