-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
364 lines (342 loc) · 17.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Dyary's Portfolio</title>
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" property="og:title" content="[Content title here]">
<meta property="og:type" content="javaScript">
<meta name="image" property="og:image"
content="https://camo.githubusercontent.com/e1c457d6089109d23519608575c9c8248ed47b4ff63bfcce21150b6d795ebb13/68747470733a2f2f692e696d6775722e636f6d2f765758775461522e706e67">
<meta name="description" property="og:description" content="
This is my portfolio website.
It's created with CSS and HTML and javaScript.
I used Flexbox to style my nav items and social media links.
I used media queries to make it responsive. so i works well on mobile devices.">
<meta name="author" content="Dyary Raoof">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-80TS1CCG4Z"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-80TS1CCG4Z');
</script>
</head>
<body>
<div class="body-wrapper">
<nav id="popup-nav" class="display-none">
<ul id="popup-nav-ul">
<li id="close"><img src="images/mobile-nav-close-button.png" alt="mobile nav close"></li>
<li id="portfolio-item"><a href="#work-area-grid">Portfolio</a></li>
<li id="about-item"><a href="#about-section">About</a></li>
<li id="contact-item">
<a href="#contact-section-container">
Contact
</a>
</li>
</ul>
</nav>
<div class="container">
<header>
<nav>
<ul class="nav-items-ul flex">
<li id="my-logo-nav-item"><a href="#logo">Dyary
Raoof
BayzAgha</a></li>
<li class="left-nav-items"><a href="#work-area-grid">Portfolio</a></li>
<li class="left-nav-items"><a href="#about-section">About</a></li>
<li class="left-nav-items">
<a href="#contact-section-container">
Contact
</a>
</li>
<li id="hamburger-nav-item">
<a href="#">
<img src="images/hamburger-icon.png" alt="hamburger
icon">
</a>
</li>
</ul>
</nav>
</header>
<section id="hero-section">
<div id="hero-area-content">
<h1>
I’m Dyary<br>
Glad to see you!
</h1>
<p>I’m a software developer! I can help you build a
product
,
feature or website Look through some of my work and
experience!
If you like what you see and have a project you need
coded,
don’t hestiate to contact me.
</p>
<label class="lets-connect-label">LETS CONNECT</label>
<ul>
<li><span><a href="https://twitter.com/dyaryraoof"><img src="images/twitter-icon.svg" alt="Twitter
Icon"></a></span></li>
<li><span><a href="https://www.linkedin.com/in/dyaryraoof/"><img src="images/linked-in-icon.svg"
alt="LinkedIn
Icon"></a></span></li>
<li><span><a href="https://medium.com/@dyaryraoof"><img src="images/medium-icon.svg" alt="Medium
Icon"></a></span></li>
<li><span><a a href="https://github.com/dyaryraoof"><img src="images/github-icon.svg" alt="Github
Icon"></a></span></li>
<li><span><a href="https://angel.co/u/dyaryraoof"><img src="images/angellist-icon.svg" alt="Angellist
Icon"></a></span></li>
</ul>
</div>
</section>
</div>
<section id="work-area-grid">
<section class="work-card first-card flex">
<img class="work-card-desktop-image"
src="https://github.com/DyaryRaoof/javascript-capstone/raw/development/app_screenshot.png" alt="Tonic work
card">
<img class="work-card-mobile-image"
src="https://github.com/DyaryRaoof/javascript-capstone/raw/development/app_screenshot.png" alt="Tonic work
card">
<div class="work-card-content">
<h1>Starlite Shows</h1>
<ul class="flex work-card-tonic-top-links">
<li>Self-Employed</li>
<li class="work-card-top-links-2-3">Front End</li>
<li class="work-card-top-links-2-3">2022</li>
</ul>
<p>
The website displays the seasons and episodes of three chosen TV shows,
as well as having a comment section for every episode connected to the involvement API,
the project was built with HTML, CSS, JavaScript,
bundled with Webpack and tested with Jest.
</p>
<ul class="work-card-languages-ul flex">
<li>html</li>
<li>css</li>
<li>javaScript</li>
</ul>
<button class="styled-button see-project" type="button">See
Project</button>
</div>
</section>
<section class="work-card image-to-the-left flex">
<img class="work-card-desktop-image" src="images/budget_screenshot.png" alt="Tonic
work
card">
<img class="work-card-mobile-image" src="images/budget_screenshot.png" alt="Tonic work
card">
<div class="work-card-content">
<h1>Budget</h1>
<ul class="flex work-card-tonic-top-links">
<li>Self-Employed</li>
<li class="work-card-top-links-2-3">Back End Dev</li>
<li class="work-card-top-links-2-3">2022</li>
</ul>
<p>
This is a Ruby on Rails capstone project from Microverse curriculum.
It is about building a mobile web application where you can manage your budget:
you have a list of transactions associated with a category,
so that you can see how much money you spent and on what.
</p>
<ul class="work-card-languages-ul flex">
<li>html</li>
<li>Ruby on rails</li>
<li>css</li>
<li>Bootstrap</li>
</ul>
<button class="styled-button see-project" type="button">See
Project</button>
</div>
</section>
<section class="work-card first-card flex">
<img class="work-card-desktop-image"
src="https://github.com/DyaryRaoof/motors-frontend/raw/dev/screenshot1.png" alt="Tonic work
card">
<img class="work-card-mobile-image"
src="https://github.com/DyaryRaoof/motors-frontend/raw/dev/screenshot1.png" alt="Tonic work
card">
<div class="work-card-content">
<h1>Motors</h1>
<ul class="flex work-card-tonic-top-links">
<li>SELF EMPLOYED</li>
<li class="work-card-top-links-2-3">Full Stack Dev</li>
<li class="work-card-top-links-2-3">2022</li>
</ul>
<p>
This is a website that allows users to login, see list of motorcycle models,
register a motorcycle or delete motorcycles,
create reservations for motorcycles with city and date and see list of reservation.
All of this is handled with react and redux and gets info from the back-end api.
this project was built as the final capstone project for the Microverse full-stack developer
curriculum
</p>
<ul class="work-card-languages-ul flex">
<li>html</li>
<li>Ruby on rails</li>
<li>React js</li>
<li>javaScript</li>
</ul>
<button class="styled-button see-project" type="button">See
Project</button>
</div>
</section>
<section class="work-card image-to-the-left flex">
<img class="work-card-desktop-image"
src="https://github.com/DyaryRaoof/motors-frontend/raw/dev/screenshot1.png" alt="Tonic
work
card">
<img class="work-card-mobile-image"
src="https://github.com/DyaryRaoof/motors-frontend/raw/dev/screenshot1.png" alt="Tonic work
card">
<div class="work-card-content">
<h1>Motors Back End</h1>
<ul class="flex work-card-tonic-top-links">
<li>SElF EMPLOYED</li>
<li class="work-card-top-links-2-3">Full Stack Dev</li>
<li class="work-card-top-links-2-3">2022</li>
</ul>
<p>
This is a Ruby on Rails final capstone project from Microverse curriculum.
This is a API that allows users to login, get list of motorcycle models,
register a motorcycle or delete motorcycles,
create reservations for motorcycles with city and date and get list of reservation.
</p>
<ul class="work-card-languages-ul flex">
<li>Ruby on rails</li>
<li>Ruby</li>
</ul>
<button class="styled-button see-project" type="button">See
Project</button>
</div>
</section>
<section id="about-section" class="flex">
<div class="about-section-content">
<h1>
About<br>
Myself
</h1>
<p>Hello I’m a software developer!
I can help you build a product ,
feature or website Look through some of my work and
experience!
If you like what you see and have a project you need
coded,
don’t hestiate to contact me.
</p>
<label class="lets-connect-label">LETS CONNECT</label>
<ul>
<li><span><a href="https://twitter.com/dyaryraoof"><img src="images/twitter-icon.svg" alt="Twitter
Icon"></a></span></li>
<li><span><a href="https://www.linkedin.com/in/dyaryraoof/"><img src="images/linked-in-icon.svg"
alt="LinkedIn
Icon"></a></span></li>
<li><span><a href="https://medium.com/@dyaryraoof"><img src="images/medium-icon.svg" alt="Medium
Icon"></a></span></li>
<li><span><a a href="https://github.com/dyaryraoof"><img src="images/github-icon.svg" alt="Github
Icon"></a></span></li>
<li><span><a href="https://angel.co/u/dyaryraoof"><img src="images/angellist-icon.svg" alt="Angellist
Icon"></a></span></li>
</ul>
<button class="styled-button" type="button">Get My
Resume</button>
</div>
<ul id="about-section-dropdowns">
<li class="flex language-icons-header-li">
<label>Languages</label>
<img src="images/dropdown-icon.png" alt="dropdown
icon">
</li>
<li class="about-drop-down-icons-middle">
<div>
<img src="images/javascript-icon.png" alt="javascript icon">
<label>javaScript</label>
</div>
<div>
<img src="images/html-icon.png" alt="html icon">
<label>HTML</label>
</div>
<div>
<img src="images/css-icon.png" alt="css icon">
<label>css</label>
</div>
</li>
<li class="flex about-2-3-dropdowns">
<label>Frameworks</label>
<img src="images/right-arrow-icon.png" alt="dropdown
icon">
</li>
<li>
<hr>
</li>
<li class="flex about-2-3-dropdowns">
<label>Skills</label>
<img src="images/right-arrow-icon.png" alt="dropdown
icon">
</li>
<li>
<hr>
</li>
</ul>
</section>
</section>
<div id="contact-section-container">
<section class="contact-section flex">
<h1 id="contact-header">Contact Me</h1>
<p id="contact-detail">If you have an application you are
interested
in developing,
a feature that you need built or a project that needs
coding.
I’d love to help with it
</p>
<form action="https://formspree.io/f/mzbykgne" method="POST" class="flex">
<input id="form-name" name="name" type="text" placeholder="full name" maxlength="30" required>
<input id="email" name="email" type="email" placeholder="email" required>
<textarea id="form-description" name="msg" placeholder="Write your message here..." maxlength="500"
required></textarea>
<span id="form-email-error-span" class="display-none" aria-live="polite"></span>
<button type="submit" class="styled-button">Get In Touch</button>
</form>
</section>
</div>
</div>
<div class="display-none" id="popup-wrapper">
<div id="popup-header">
<h1 id="popup-window-header"></h1>
<img id="popup-window-close-button" src="images/Icon-close-popup-detail.png" alt="close
popup
button">
</div>
<ul id="popup-sub-header" class="flex
work-card-tonic-top-links">
<li id="popup-window-languages1"></li>
<li id="popup-window-languages2" class="work-card-top-links-2-3"></li>
<li id="popup-window-languages3" class="work-card-top-links-2-3"></li>
</ul>
<div id="popup-image-wrapper">
<img id="popup-image" src="#" alt="pop up
main image">
</div>
<div class="popup-body">
<p id="popup-window-paragraph-detail"></p>
<div class="popup-footer">
<ul id="popup-technologies">
<li id="popup-window-technologies1"></li>
<li id="popup-window-technologies2"></li>
<li id="popup-window-technologies3"></li>
<li id="popup-window-technologies4"></li>
</ul>
<div id="popup-buttons">
<button id="see-live">See Live<img src="images/icon-see-live.png" alt="See Live"></button>
<button id="see-source">See Source<img src="images/icon-github-blue.png" alt="Github"></button>
</div>
</div>
</div>
</div>
<script src="script.js" type="text/javascript"></script>
</body>
</html>