-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
404 lines (382 loc) · 12.9 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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="preload"
as="font"
href="fonts/Kreon-VariableFont_wght.ttf"
crossorigin="anonymous"
/>
<link
rel="preload"
as="font"
href="fonts/Goldman-Regular.ttf"
crossorigin="anonymous"
/>
<link rel="preload" href="css/styles.css" as="style" />
<!-- css stylesheet -->
<link rel="stylesheet" href="css/styles.css" />
<!-- favicon -->
<link rel="icon" href="images/logo.png" type="icon/png" />
<title>Greg Jones</title>
<style>
@font-face {
font-family: "Kreon";
src: url("fonts/Kreon-VariableFont_wght.ttf") format("truetype");
font-style: normal;
}
@font-face {
font-family: "Goldman";
src: url("fonts/Goldman-Regular.ttf") format("truetype");
font-style: normal;
font-weight: 400;
}
</style>
</head>
<body>
<!-- Header -->
<header id="head" class="pos-relative">
<div class="heading d-grid text-center">
<div class="welcome-text pos-relative">
<h1 class="pos-absolute font-xxl">Hi ! I'm Greg</h1>
</div>
<div class="pos-relative">
<p class="font-m">A Web Developer</p>
</div>
<div class="d-block">
<a class="font-m btn" href="#abt">Who am I</a>
</div>
</div>
</header>
<!-- Navigation -->
<nav
class="d-flex t-0 align-items-center justify-content-sp-between m-auto br-5"
>
<a href="#head" class="mx-10">
<h2 class="font-xl">Greg Jones</h2>
</a>
<ul class="nav-links d-flex justify-content-sp-around">
<li><a href="#abt" class="font-m">About</a></li>
<li><a href="#skl" class="font-m">Skills</a></li>
<li><a href="#prj" class="font-m">Project</a></li>
<li><a href="#cnt" class="font-m">Contact</a></li>
</ul>
<div class="burger pointer d-none mx-10">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<!-- About section -->
<section class="d-flex flex-col pt-70 px-10" id="abt">
<h2 class="section-heading font-l">WHO AM I</h2>
<div class="about d-flex m-auto align-items-center p-10">
<img src="images/anonymous.jpg" alt="anonymous" class="p-10 br-20" />
<div class="about-content p-10">
<h3 class="font-xl py-10">I Design Awesome Web Apps</h3>
<p class="font-s text-justify mb-10">
I'm a passionate Full Stack Software Developer having an experience
of building Web and Mobile applications with JavaScript / Reactjs /
Nodejs / React Native and some other cool libraries and frameworks.
</p>
<ul class="font-s">
<li>
I develop highly interactive Front end / User Interfaces for web
and mobile applications.
</li>
<li>Not a professional, still Learning ...</li>
<li>I love pizza 🍕</li>
</ul>
</div>
</div>
</section>
<!-- skills section -->
<section class="skills m-auto d-flex flex-col pt-70" id="skl">
<h2 class="section-heading font-l">SKILLS</h2>
<div class="card-container d-grid justify-content-center p-10 pt-0 h-100">
<div class="card card1 d-flex my-15 br-5">
<div class="card-image px-10 m-10 fa-1 br-10"></div>
<div class="card-content d-flex flex-col pr-10 pl-10">
<h4 class="pb-5 font-m2">Design</h4>
<p class="font-xs">
Develop highly interactive Front end / User Interfaces for web and
mobile applications.
</p>
</div>
</div>
<div class="card card2 d-flex my-15 br-5">
<div class="card-image px-10 m-10 fa-2 br-10"></div>
<div class="card-content d-flex flex-col pr-10 pl-10">
<h4 class="pb-5 font-m2">Languages</h4>
<p class="font-xs">
Good in Javascript and a bit of Python and C++. Love React.js
library.
</p>
</div>
</div>
<div class="card card3 d-flex my-15 br-5">
<div class="card-image px-10 m-10 fa-3 br-10"></div>
<div class="card-content d-flex flex-col pr-10 pl-10">
<h4 class="pb-5 font-m2">Front-End</h4>
<p class="font-xs">
Develop front-end with React, Gatsby or even vanilla Javascript.
</p>
</div>
</div>
<div class="card card4 d-flex my-15 br-5">
<div class="card-image px-10 m-10 fa-4 br-10"></div>
<div class="card-content d-flex flex-col pr-10 pl-10">
<h4 class="pb-5 font-m2">Apps</h4>
<p class="font-xs">
Develop hybrid and natively hybrid apps using React and
React-native.
</p>
</div>
</div>
</div>
</section>
<!-- projects section -->
<section class="d-block p-10 projects container" id="prj">
<h2 class="section-heading font-l">PROJECTS</h2>
<div class="d-grid grid-3-5">
<div class="cell v1 bg-grad1">
<div class="project-card project1">
<div class="img-card">
<h2>Simple Quiz</h2>
<p>A simple and basic 5 Question quiz game made with React.</p>
<a
class="btn"
href="https://simple-quiz.vercel.app"
target="_blank"
rel="noopener noreferrer"
>Visit</a
>
</div>
</div>
</div>
<div class="cell v1 bg-grad2">
<div class="project-card project2">
<div class="img-card">
<h2>Lorem-Nature-Blog</h2>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Perspiciatis consectetur recusandae molestias voluptas quae qui
expedita nobis perferendis accusamus quibusdam.
</p>
<a
class="btn"
href="https://lorem-nature-blog.vercel.app"
target="_blank"
rel="noopener noreferrer"
>Visit</a
>
</div>
</div>
</div>
<div class="cell v2 bg-grad3">
<div class="project-card project3">
<div class="img-card">
<h2>Lorem-Nature-Blog</h2>
<p>
The world is an amazing place full of stories, beauty and
natural wonder.This is a blog for sharing fascination about
nature. Also educate about some endangered parts of nature.
</p>
<a
class="btn"
href="https://lorem-nature-blog.vercel.app"
target="_blank"
rel="noopener noreferrer"
>Visit</a
>
</div>
</div>
</div>
<div class="cell v3 bg-grad4">
<div class="project-card project4">
<div class="img-card">
<h2>Lorem-Nature-Blog</h2>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.
Perspiciatis consecteas
</p>
<a
class="btn"
href="https://lorem-nature-blog.vercel.app"
target="_blank"
rel="noopener noreferrer"
>Visit</a
>
</div>
</div>
</div>
<div class="cell v3 bg-grad5">
<div class="project-card project5">
<div class="img-card">
<h2>Lorem-Nature-Blog</h2>
<p>
Lorem, ipsum dolor sit aming elit. Perspiciatis consectetur
recusandae molestias
</p>
<a
class="btn"
href="https://lorem-nature-blog.vercel.app"
target="_blank"
rel="noopener noreferrer"
>Visit</a
>
</div>
</div>
</div>
<div class="cell v3 color6">
<div class="project-card project6">
<div class="img-card">
<h2>Lorem-Nature-Blog</h2>
<p>
Lorem, ipsum dolor sit amet consectetur adipi.tis consectetur
recusandae molestias
</p>
<a
class="btn"
href="https://lorem-nature-blog.vercel.app"
target="_blank"
rel="noopener noreferrer"
>Visit</a
>
</div>
</div>
</div>
<div class="cell v4 color7">
<div class="project-card project7">
<div class="img-card">
<h2>Lorem-Nature-Blog</h2>
<p>
Lorem, ipsum dolor sit amet consectlit. Perspiciatis consectetur
recusandae molestias
</p>
<a
class="btn"
href="https://lorem-nature-blog.vercel.app"
target="_blank"
rel="noopener noreferrer"
>Visit</a
>
</div>
</div>
</div>
<div class="cell v3 color8">
<div class="project-card project8">
<div class="img-card">
<h2>Lorem-Nature-Blog</h2>
<p>
Lorem, ipsum dolor sit amet consectetur adipisicing elit.ectetur
recusandae molestias
</p>
<a
class="btn"
href="https://lorem-nature-blog.vercel.app"
target="_blank"
rel="noopener noreferrer"
>Visit</a
>
</div>
</div>
</div>
</div>
</section>
<!-- contact + credits + copyright -->
<section class="contact" id="cnt">
<div class="d-flex container">
<div class="left d-flex flex-col">
<h3>Connect</h3>
<div class="logo-container d-flex">
<a
href="https://facebook.com"
target="_blank"
rel="noopener noreferrer"
class="logo"
>
<img src="./images/connect/facebook.svg" alt="fb" />
</a>
<a
href="https://github.com/greg021"
target="_blank"
rel="noopener noreferrer"
class="logo"
>
<img src="./images/connect/github.svg" alt="ig" />
</a>
<a
href="https://twitter.com"
target="_blank"
rel="noopener noreferrer"
class="logo"
>
<img src="./images/connect/twitter.svg" alt="t" />
</a>
<a
href="https://linkedin.com"
target="_blank"
rel="noopener noreferrer"
class="logo"
>
<img src="./images/connect/linkedIn.svg" alt="in" />
</a>
</div>
<p class="copyright font-xs">© 2021, Greg Jones</p>
</div>
<div class="hr"></div>
<div class="right d-flex flex-col">
<h3>Contact Me</h3>
<!-- form action="/contact" method="POST" class="d-flex flex-col" -->
<form
action="https://formsubmit.co/5b3fd018e9bcf741902e6be524f1a82f"
method="POST"
class="d-flex flex-col"
>
<div class="form-container d-grid">
<input type="text" name="_honey" style="display: none" />
<input type="hidden" name="_template" value="box" />
<input
type="hidden"
name="_next"
value="https://greg021.github.io"
/>
<input type="hidden" name="_captcha" value="false" />
<input
required
type="text"
id="name"
name="name"
minlength="5"
maxlength="30"
placeholder="Your name.."
/>
<input
required
type="text"
id="sub"
name="subject"
minlength="6"
maxlength="80"
placeholder="Your Topic..."
/>
<textarea
required
id="desc"
name="desc"
minlength="20"
maxlength="300"
placeholder="Write something.."
></textarea>
</div>
<button type="submit">Send</button>
</form>
</div>
</div>
</section>
<script src="script/script.js"></script>
</body>
</html>