-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
368 lines (339 loc) · 18.6 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
<!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">
<title>Portfolio - Osamu Morozumi, Web developer</title>
<meta name="author" content="Osamu Morozumi">
<meta name="description" content="Portfolio page for web developer Osamu Morozumi. Osamu is a freelance web developer and designer living in Perth Australia. He builds web projects in WordPress, HTML5, CSS3 and javaScript">
<meta name="keywords" content="WordPress, web, web development, designer, web designer, HTML5, html, CSS3, css, javaScript, jQuery, front-end, front end, full stack, css grid, flex-box, React">
<link rel="stylesheet" href="portfolio.css">
</head>
<body>
<a id="home"></a>
<!-- Header section, full screen -->
<header id="welcome-section">
<div class="headings-section">
<h1>
H<span class="luminous">i</span>, I'm Osamu,</h1>
<h2 class="welcome-subheading">I build web pages and applications</h2>
</div>
<a class="welcome-link" href="#projects">
<h3>See my work</h3>
</a>
<nav id="navbar">
<div id="navcon" class="nav-container">
<div class="nav-header">
<a id="home-link" href="#home">
<h2>Osamu Morozumi</h2>
</a>
</div>
<div class="nav-list">
<div class="link-container">
<a class="nav-link" href="#about-link">
About
</a>
</div>
<div class="link-container">
<a class="nav-link" href="#project-link">
Projects
</a>
</div>
<div class="link-container">
<a class="nav-link" href="#contact-link">
Contact
</a>
</div>
</div>
<div id="menu-toggle">
<div class="hamburger top">
</div>
<div class="hamburger top">
</div>
<div class="hamburger">
</div>
</div>
</div>
</nav>
</header>
<!-- Navbar -->
<main>
<!-- About section -->
<article id="about">
<a class="nav-anchor" id="about-link"></a>
<div class="article-header" id="about-header">
<h2 class="article-heading" id="about-heading">About</h2>
</div>
<div class="container" id="about-container">
<section class="about-section about-picture">
<img class="profile-picture" src="images/profile-greyscale-reduced.jpg" alt="black and white profile picture">
</section>
<section class="about-section">
<p class="about-description">
I started coding in March 2018 in response to extended time off work due to injury. Web development has quickly become my passion and I love building web apps and designing web pages. I have experience using: <em class="tech">HTML5</em>,
<em class="tech">WordPress</em>,
<em class="tech">CSS3</em>, <em class="tech">javaScript</em>, <em class="tech">jQuery</em> and <em class="tech">git</em>. I am always improving my development skills and knowledge.
</p>
</article>
<!-- Projects -->
<article id="projects">
<a class="nav-anchor" id="project-link"></a>
<h2 class="article-heading" id="projects-heading">Projects</h2>
<div class="container" id="projects-container">
<!-- pomodoro -->
<section class="project-section project-tile">
<img src="images/portfolio-thumbs/pomodoro.png" alt="project thumb">
<section class="project-section project-description-section">
<div class="project-description-text">
<h3 class="project-title">Pomodoro timer</h3>
<p>
Adjustable pomodoro timer built with react js and moment js
</p>
<a href='https://ozmos.github.io/pomodoro/' target="_blank">Project</a>
<br>
<a href="https://github.com/ozmos/pomodoro" target="_blank">Code</a>
</div>
</section>
</section>
<!-- calculator -->
<section class="project-section project-tile">
<img src="images/portfolio-thumbs/calculator.png" alt="project thumb">
<section class="project-section project-description-section">
<div class="project-description-text">
<h3 class="project-title">React calculator</h3>
<p>
Working calculator built with react js.
</p>
<a href='https://ozmos.github.io/calculator/' target="_blank">Project</a>
<br>
<a href="https://github.com/ozmos/calculator" target="_blank">Code</a>
</div>
</section>
</section>
<!-- drum machine -->
<section class="project-section project-tile">
<img src="images/portfolio-thumbs/drum-machine.png" alt="project thumb">
<section class="project-section project-description-section">
<div class="project-description-text">
<h3 class="project-title">React-redux drum-machine</h3>
<p>
Interactive drum-machine featuring four separate sample banks with changing color scheme.
</p>
<a href='https://ozmos.github.io/drum-machine/' target="_blank">Project</a>
<br>
<a href="https://github.com/ozmos/drum-machine" target="_blank">Code</a>
</div>
</section>
</section>
<!-- markdown-previewer -->
<section class="project-section project-tile">
<img src="images/portfolio-thumbs/React-markdown-previewer.png" alt="project thumb">
<section class="project-section project-description-section">
<div class="project-description-text">
<h3 class="project-title">React markdown previewer</h3>
<p>
This markdown previewer uses marked.js and the React library to render markdown into html as the user types into the input.
</p>
<a href='https://ozmos.github.io/React-markdown-previewer/' target="_blank">Project</a>
<br>
<a href="https://github.com/ozmos/React-markdown-previewer" target="_blank">Code</a>
</div>
</section>
</section>
<!-- product landing page -->
<section class="project-section project-tile">
<img src="images/portfolio-thumbs/product-landing-page-resized.jpg" alt="project thumb">
<section class="project-section project-description-section">
<div class="project-description-text">
<h3 class="project-title">Product landing page</h3>
<p>
I envisioned a global technology company planting trees around the world and what their website would look like for this free code camp project.
</p>
<a href="https://ozmos.github.io/product-landing-page/" target="_blank">Project</a>
<br>
<a href="https://github.com/ozmos/product-landing-page" target="_blank">Code</a>
</div>
</section>
</section>
<!-- survey form -->
<section class="project-section project-tile">
<img src="images/portfolio-thumbs/survey-form-resized.jpg" alt="project thumb">
<section class="project-section project-description-section">
<div class="project-description-text">
<h3 class="project-title">Survey form</h3>
<p>
This page utilizes flex-box, grid and media queries to create responsive elements within a flexible layout. Created as a project for free code camp.
</p>
<a href="https://ozmos.github.io/survey-form/" target="_blank">Project</a>
<br>
<a href="https://github.com/ozmos/survey-form" target="_blank">Code</a>
</div>
</section>
</section>
<!-- technical documentation page -->
<section class="project-section project-tile">
<img src="images/portfolio-thumbs/tech-doc-page-resized.jpg" alt="project thumb">
<section class="project-section project-description-section">
<div class="project-description-text">
<h3 class="project-title">Technical documentation page</h3>
<p>
The clean layout and style of this page fits the subject. Created as a project for free code camp.
</p>
<a href="https://ozmos.github.io/technical-documentation-page/" target="_blank">Project</a>
<br>
<a href="https://github.com/ozmos/technical-documentation-page" target="_blank">Code</a>
</div>
</section>
</section>
<!-- wikipedia viewer -->
<section class="project-section project-tile">
<img src="images/portfolio-thumbs/wikiviewer-resized.jpg" alt="project thumb">
<section class="project-section project-description-section">
<div class="project-description-text">
<h3 class="project-title">Wikiviewer</h3>
<p>
This simple web app uses jQuery and JSON to enable the user to search for wikipedia articles. Created as a project for free code camp.
</p>
<a href="https://ozmos.github.io/wikiviewer/" target="_blank">Project</a>
<br>
<a href="https://github.com/ozmos/wikiviewer" target="_blank">Code</a>
</div>
</section>
</section>
<!-- random quote generator -->
<section class="project-section project-tile">
<img src="images/portfolio-thumbs/random-quote-hard-resized.jpg" alt="project thumb">
<section class="project-section project-description-section">
<div class="project-description-text">
<h3 class="project-title">Random quote generator</h3>
<p>
This simple web app uses javascript to generate random quotes. The user has the option to tweet the quote. Created as a project for free code camp.
</p>
<a href="https://ozmos.github.io/random-quote-generator/" target="_blank">Project</a>
<br>
<a href="https://github.com/ozmos/random-quote-generator" target="_blank">Code</a>
</div>
</section>
</section>
<!-- clock -->
<section class="project-section project-tile">
<img src="images/portfolio-thumbs/clock-app-resized.jpg" alt="project thumb">
<section class="project-section project-description-section">
<div class="project-description-text">
<h3 class="project-title">Digital clock</h3>
<p>
This is a simple digital clock I created using javascript. You can toggle between 12 and 24hr time with a button.
</p>
<a href="https://ozmos.github.io/simple-clock/" target="_blank">Project</a>
<br>
<a href="https://github.com/ozmos/simple-clock" target="_blank">Code</a>
</div>
</section>
</section>
<!-- weather viewer -->
<section class="project-section project-tile">
<img src="images/portfolio-thumbs/weather-app-resized.jpg" alt="project thumb">
<section class="project-section project-description-section">
<div class="project-description-text">
<h3 class="project-title">Local weather app</h3>
<p>
This simple app shows the user's local weather using jQuery, geolocation and an API.
</p>
<a href="https://ozmos.github.io/weather-app-fcc/" target="_blank">Project</a>
<br>
<a href="https://github.com/ozmos/weather-app-fcc" target="_blank">Code</a>
</div>
</section>
</section>
</div>
<section id="profile-links">
<a id="profile-link" href="https://github.com/ozmos/">
<h2 id="links-heading">See more of my work</h2>
</a>
</section>
</article>
<!-- contact section -->
<article id="contact-form">
<a class="nav-anchor" id="contact-link"></a>
<h2 class="article-heading" id="contact-heading">Get in touch</h2>
<div class="contact-section">
<div class="message">
<form name="contact" id="contact" class="ucf" novalidate>
<input class="form-control" type="text" name="name" id="name" maxlength="40" placeholder="your name" required>
<input class="form-control" type="email" name="email" id="email" maxlength="40" placeholder="your [email protected]" required>
<textarea class="form-control" name="message" id="message" maxlength="140" placeholder="Please visit pcwebsites.com.au to contact me directly" required></textarea>
<div class="form-group" style="left: -9999px; position: absolute;">
<label for="honey" class="col-sm-2 control-label">
Please leave this field empty - we're using it to stop robots submitting the form<br>
</label>
<div class="col-sm-10">
<input class="form-control" type="text" name="honey" id="honey">
</div>
</div>
<div class="progress-container"></div>
<a href="https://pcwebsites.com.au/#contact-1" target="_blank"><input id="submit" value="Submit"></a>
</form>
</div>
<!-- social media -->
<div class="container" id="socials-container">
<h3 id="socials-heading">Catch me hanging out here</h3>
<a href="https://twitter.com/PerthDev" target="_blank">
<img class="socials-icon" src="images/icons/3225183 - app logo media popular social twitter.svg" alt="twitter logo">
</a>
<a href="https://forum.freecodecamp.org/u/ozmos/" target="_blank">
<img class="socials-icon" src="images/icons/freeCodeCampSquare.jpeg" alt="free code camp">
</a>
<a href="https://www.linkedin.com/in/osamu-morozumi-692a27141/" target="_blank">
<img class="socials-icon" src="images/icons/3225190 - app linkedin logo media popular social.svg" alt="linkedin">
</a>
<!-- social icons from https://www.iconfinder.com/Indygo-->
<a href="https://github.com/ozmos" target="blank">
<img class="socials-icon" src="images/icons/if_Github_1298743.svg" alt="github">
</a>
<!-- github icon from https://www.behance.net/Just_UI -->
</div>
</div>
</article>
</main>
<!-- footer section -->
<footer>
<span class="copyright-info">
©
<span id="copyright">
<script>document.getElementById('copyright').appendChild(document.createTextNode(new Date().getFullYear()))</script>
</span>
<a href="https://github.com/ozmos" target="blank">
Osamu Morozumi</a>
</span>
<div class="footer-branding">
<a href="https://pcwebsites.com.au" target="blank">Perth Custom Websites</a>
</div>
<div class="footer-nav-links">
<div class="footer-link-container">
<a class="footer-nav-link" href="#about">
About
</a>
</div>
<div class="footer-link-container">
<a class="footer-nav-link" href="#projects">
Projects
</a>
</div>
<div class="footer-link-container">
<a class="footer-nav-link" href="#contact">
Contact
</a>
</div>
<div class="footer-link-container">
<a class="footer-nav-link" href="#home">
Home
</a>
</div>
</div>
</footer>
<script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
<script src="scripts/nav.js"></script>
<script src="scripts/gallery.js"></script>
</body>
</html>