-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
250 lines (249 loc) · 8.84 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
<!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.0" />
<meta
name="description"
content="Jay's personal web development portfolio. Check out what he's been up to!"
/>
<title>Jay Wu's Web Development Portfolio</title>
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" type="image/x-icon" href="./img/favicon.ico" />
<!-- fontawesome -->
<script
src="https://kit.fontawesome.com/bb845f159f.js"
crossorigin="anonymous"
></script>
<!-- Load EmailJS SDK -->
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"
></script>
<script defer src="main.js"></script>
<script defer src="form_submit.js"></script>
</head>
<body>
<nav id="navigation">
<input type="checkbox" id="nav-checkbox" />
<label for="nav-checkbox">
<div id="nav-btn">
<div id="nav-btn-layer"></div>
</div>
</label>
<ul id="nav-list">
<li class="nav-item">
<a href="#showcase"><i class="fas fa-arrow-alt-circle-up"></i></a>
</li>
<li class="nav-item">
<a href="#about"><i class="fas fa-address-card"></i></a>
</li>
<li class="nav-item">
<a href="#works"><i class="fas fa-code"></i></a>
</li>
<li class="nav-item">
<a href="#contact"><i class="fas fa-envelope"></i></a>
</li>
</ul>
</nav>
<section id="showcase">
<div id="welcome-text">
<h1 class="primary-title">Hi, I'm Jay.</h1>
<h2 class="secondary-title">Welcome to my portfolio</h2>
</div>
<div id="outer-circle" class="scrolling-circle"></div>
<div id="middle-circle" class="scrolling-circle"></div>
<div id="inner-circle" class="scrolling-circle"></div>
<div id="scrolling-text">Scroll Down...</div>
</section>
<section id="about">
<div class="container">
<h1 class="primary-title section-title">Who Am I</h1>
<h2 class="secondary-title section-lead">
Husband, Father, Home Maker, Dog Owner and Web Developer
</h2>
<img id="about-image" src="./img/aboutme.jpg" alt="about me" />
<p id="about-details">
Hi there! I'm Jay Wu, a self-taught web developer based in Wisconsin.
I like coding, music, video games and traveling with my family. I'm
constantly building my skills and updating my portfolio. I wish when I
look back here in ten years, I can still find some silly projects I am
proud of. Don't forget to come back and check out for more!
<br />
<br />
Feel free to reach me out for anything: jobs, questions, suggestions,
comments on the projects or just to say Hi. I will get back to you.
<br />
<br />
Never stop coding. Never stop learning.
</p>
</div>
</section>
<section id="works">
<div class="container">
<h1 class="primary-title section-title">My Works</h1>
<h2 class="secondary-title section-lead">More are coming ...</h2>
<div class="work-item">
<a
href="https://jay0223.github.io/minesweeper/"
target="_blank"
class="work-item-cover"
data-name="Minesweeper"
>
<img src="./img/minesweeper-cover.jpg" alt="Minesweeper" />
</a>
<a
href="https://github.com/Jay0223/Jay0223.github.io/tree/master/minesweeper"
target="_blank"
class="work-item-github"
>
<i class="fab fa-github"></i>
</a>
<div class="work-item-tags-container">
<span class="work-item-tag game-tag">#GAME!</span>
<span class="work-item-tag special-tag">#Classic</span>
</div>
</div>
<div class="work-item">
<a
href="https://jay0223.github.io/guessnumber/"
target="_blank"
class="work-item-cover"
data-name="Guess Number Game"
>
<img src="./img/guessnumber-cover.jpg" alt="Guess Number Game" />
</a>
<a
href="https://github.com/Jay0223/Jay0223.github.io/tree/master/guessnumber"
target="_blank"
class="work-item-github"
>
<i class="fab fa-github"></i>
</a>
<div class="work-item-tags-container">
<span class="work-item-tag design-tag">#design</span>
<span class="work-item-tag game-tag">#GAME!</span>
</div>
</div>
<div class="work-item">
<a
href="https://jay0223.github.io/lamountains/"
target="_blank"
class="work-item-cover"
data-name="LA Mountains"
>
<img src="./img/lamountain-cover.jpg" alt="Los Angeles Mountains" />
</a>
<a
href="https://github.com/Jay0223/Jay0223.github.io/tree/master/lamountains"
target="_blank"
class="work-item-github"
>
<i class="fab fa-github"></i>
</a>
<div class="work-item-tags-container">
<span class="work-item-tag clone-tag">#clone</span>
<span class="work-item-tag responsive-tag">#responsive</span>
<span class="work-item-tag special-tag">#carousel</span>
</div>
</div>
<div class="work-item">
<a
href="https://jay0223.github.io/restaurant/"
target="_blank"
class="work-item-cover"
data-name="Chinese Restaurant"
>
<img src="./img/restaurants-cover.jpg" alt="Chinese Restaurant" />
</a>
<a
href="https://github.com/Jay0223/Jay0223.github.io/tree/master/restaurant"
target="_blank"
class="work-item-github"
>
<i class="fab fa-github"></i>
</a>
<div class="work-item-tags-container">
<span class="work-item-tag design-tag">#design</span>
<span class="work-item-tag responsive-tag">#responsive</span>
<span class="work-item-tag special-tag">#shoppingCart</span>
<span class="work-item-tag sass-tag">#sass</span>
</div>
</div>
<div class="work-item">
<a
href="https://jay0223.github.io/portfolioclone/"
target="_blank"
class="work-item-cover"
data-name="Portfolio Clone"
>
<img
src="./img/clone-portfolio1-cover.jpg"
alt="Portfolio Clone Project 1"
/>
</a>
<a
href="https://github.com/Jay0223/Jay0223.github.io/tree/master/portfolioclone"
target="_blank"
class="work-item-github"
>
<i class="fab fa-github"></i>
</a>
<div class="work-item-tags-container">
<span class="work-item-tag clone-tag">#clone</span>
<span class="work-item-tag responsive-tag">#responsive</span>
<span class="work-item-tag special-tag">#modeSwitch</span>
</div>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h1 class="primary-title section-title">Contact Me</h1>
<h2 class="secondary-title section-lead">
What do you think? Let's talk.
</h2>
<form action="" id="contact-form">
<div class="input-group">
<input
type="text"
name="from_name"
id="contact-name"
placeholder="Name"
/>
<p class="input-empty-warning">
Hello stranger! May I know your name?
</p>
</div>
<div class="input-group">
<input
type="email"
name="reply_to"
id="contact-email"
placeholder="Email"
/>
<p class="input-empty-warning">I promise I won't spam you!</p>
</div>
<div class="input-group">
<textarea
name="message"
id="contact-message"
placeholder="Message"
></textarea>
<p class="input-empty-warning">Please tell me what do you think.</p>
</div>
<button id="contact-send">Send</button>
</form>
<img id="contact-image" src="./img/contactme.jpg" alt="contact me" />
</div>
</section>
<footer id="footer">
<p>Code and Design by Jie Wu</p>
<p> | </p>
<a href="https://github.com/Jay0223" target="_blank"
><i class="fab fa-github"></i
></a>
</footer>
</body>
</html>