-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
304 lines (281 loc) · 11.5 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
<!DOCTYPE html>
<!-- Elham Amouhadi -->
<html>
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Righteous" rel="stylesheet">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/script.js"></script>
<link type="text/css" rel="stylesheet" href="css/style.css">
<title>Home</title>
</head>
<body>
<header>
<nav class="main-nav">
<div class="logo">
<img src="images/logo.png" alt="Logo">
</div>
<ul>
<li class="active">
<a href="#home" class="smooth-scroll">Home</a>
</li>
<li>
<a href="#about-page" class="smooth-scroll">About</a>
</li>
<li>
<a href="#skill" class="smooth-scroll">Skills</a>
</li>
<li>
<a href="#resume" class="smooth-scroll">Resume</a>
</li>
<li>
<a href="#contact" class="smooth-scroll">Contact</a>
</li>
<li>
<a href="#projects" class="smooth-scroll">Projects</a>
</li>
</ul>
</nav>
<!-- Hamburgur menu -->
<nav role="navigation">
<div id="menuToggle">
<!--
A fake / hidden checkbox is used as click reciever,
so you can use the :checked selector on it.
-->
<input type="checkbox" />
<!--
Some spans to act as a hamburger.
They are acting like a real hamburger,
not that McDonalds stuff.
-->
<span></span>
<span></span>
<span></span>
<!--
Too bad the menu has to be inside of the button
but hey, it's pure CSS magic.
-->
<ul id="menu">
<li>
<img src="images/logo.png" alt="Logo" class="logo">
</li>
<li class="active">
<a href="#home" class="smooth-scroll">Home</a>
</li>
<li>
<a href="#about-page" class="smooth-scroll">About</a>
</li>
<li>
<a href="#skill" class="smooth-scroll">Skills</a>
</li>
<li>
<a href="#resume" class="smooth-scroll">Resume</a>
</li>
<li>
<a href="#contact" class="smooth-scroll">Contact</a>
</li>
<li>
<a href="#projects" class="smooth-scroll">Projects</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<section id="home" class="main background-image" data-stellar-background-ratio="0.6"
style="background-position: 0% 0%">
<section class="main-intro">
<h1> Hi! I'm Elham</h1>
<h2> Lets Build Things Amazing and Different Together!</h2>
</section>
<section class="main-social footer-social">
<a href="https://www.instagram.com/_lhaam" target="_blank">
<img src="images/instagram.png" alt="twitter icons">
</a>
<a href="https://www.linkedin.com/in/elham-amouhadi-92510139" target="_blank">
<img src="images/linkedIn.png" alt="linkedIn icons">
</a>
<a href="https://www.facebook.com/amouhadi" target="_blank">
<img src="images/facebook.png" alt="twitter icons">
</a>
</section>
<section class="main-contact">
<a href='#contact' class="smooth-scroll">
<button class="button">
Contact Me
</button>
</a>
</section>
</section>
<!-- About -->
<section id="about-page" class="whiteWrapper wrapper">
<div class="section-title-dark">
<h1 class="gray">About Me</h1>
</div>
<div class="title-border"></div>
<section id="about">
<h2>Passion for Thoughtful UI design, Creative and Eager to Learn</h2>
<div class="aboutContainer">
<div class="item1">
<p class="col-11 col-m-12">
Hi! I'm Ellie. I'm a Front-end Developer graduated computer science in 2013. </p>
<p>I create
websites and mobile app with greate UX and UI design. I am highly skilled with HTML, CSS, JavaScript, JQuery and Java. I have over three years of experience with these technologies, and I am eager to learn even more technologies to sharpen my skillset.</p>
<p>Outside of work, I enjoys travelling, listening to music and
hiking!
</p>
<p>Do you have project you'd like to discuss? So contact me!</p>
<a href='#contact' class="smooth-scroll">
<button class="button">
Contact Me
</button>
</a>
</div>
<div class="item2 col-4 col-m-3">
<img src="images/portfolioPic.jpg" Alt="me">
</div>
</div>
</section>
</section>
<!-- SKILL -->
<section class="wrapper grayWrapper" id="skill">
<div class="section-title-dark">
<h1 class="white">Skills</h1>
</div>
<div class="title-border"></div>
<div class="circleWrapper">
<div class="circle"><span>HTML</span></div>
<div class="circle"><span>CSS</span></div>
<div class="circle"><span>JavaScript</span></div>
<div class="circle"><span>JQuery</span></div>
<div class="circle"><span>Java</span></div>
<div class="circle"><span>Android</span></div>
<div class="circle"><span>XML</span></div>
<div class="circle"><span>BootStrap</span></div>
<div class="circle"><span>AJAX</span></div>
<div class="circle"><span>Git</span></div>
</div>
</section>
<!-- Resume -->
<section id="resume" class="whiteWrapper wrapper">
<div class="section-title-dark">
<h1 class="gray">Resume</h1>
</div>
<div class="title-border"></div>
<div class="resumeWrapper">
<div class="resumeCircle">
<img src="images/resume1.png" alt="icon1">
<div class="resumeItemRight">
<h3>2014-2016</h3>
<h4>Web Developer</h4>
<p>- Developed the front-end framework for data analysis of municipal construction permitting
including predictive analytics.<br>- Prepared data for data analysis and used prediction method
to predict construction penalty based on Prediction and clustering algorithms.</p>
</div>
</div>
<div class="verticalLine"></div>
<div class="resumeCircle">
<img src="images/resume2.png" alt="icon2">
<div class="resumeItemLeft">
<h3>2013-2014</h3>
<h4>Software Developer</h4>
<p>- Developed a comprehensive accounting application for food warehouse.
<br>- Design and implement the application tools using object oriented C#.</p>
</div>
</div>
<div class="verticalLine"></div>
<div class="resumeCircle">
<img src="images/education.png" alt="icon3">
<div class="resumeItemRight">
<h3>Education</h3>
<p>- Computer Engineering, Bachelor of Science - 2013
<br>- Web Page Development Certification – 2018
<br>- Computer Science Java and Program Mobile Devices – 2018</p>
</div>
</div>
</div>
</section>
<!-- WORK -->
<!-- CONTACT -->
<section id="contact" class="grayWrapper wrapper">
<div class="section-title-dark">
<h1 class="white">Contact Me</h1>
</div>
<div class="title-border"></div>
<div class="formContainer">
<form id="contact-form" method="post">
<div class="row">
<div class="form-group">
<input type="text" name="name" class="form-control" id="name" placeholder="Name" required>
</div>
<div class="form-group">
<input type="email" name="email" class="form-control" id="email" placeholder="Email" required>
</div>
<div class="form-group">
<input type="tel" name="phone" class="form-control" id="phone" pattern="^\d{3}-\d{3}-\d{4}$" placeholder="Phone Contact (xxx-xxx-xxxx)"
required>
</div>
<div>
<textarea name="message" class="form-control" id="message" placeholder="Your Message"
required></textarea>
</div>
<div>
<input type="submit" name="submitBtn" class="button" id="contactSubmitBtn" value="Submit Now"
title="Submit Your Message">
<input type="reset" name="resetBtn" class="button" id="resetBtn" value="Reset" title="Reset">
</div>
<label class="hidden contact-response"></label>
</div>
</form>
</div>
<div id="map" style="width: 100%"></div>
</section>
<!-- PROJECTS -->
<section id="projects" class="whiteWrapper wrapper">
<div class="section-title-dark">
<h1 class="gray">Projects</h1>
</div>
<div class="title-border"></div>
<div class="projects-container">
<div class="project" onclick="window.location.href='pages/dataAnalysis.html'">
<img src="images/rapidMiner.png">
<div class="overlay">
<div class="project-text">City Management System</div>
</div>
</div>
<div class="project" onclick="window.location.href='pages/alphabetLearning.html'">
<img src="images/ABCQuiz.png">
<div class="overlay">
<div class="project-text">Little Ducklings</div>
</div>
</div>
<div class="project" onclick="window.location.href='pages/shakeProject.html'">
<img src="images/shake-project.jpg">
<div class="overlay">
<div class="project-text">Shake!</div>
</div>
</div>
</div>
</section>
</main>
<footer class="footer">
<section class="footer-social">
<a href="https://www.instagram.com/_lhaam" target="_blank">
<img src="images/instagram.png" alt="twitter icons">
</a>
<a href="https://www.linkedin.com/in/elham-amouhadi-92510139" target="_blank">
<img src="images/linkedIn.png" alt="linkedIn icons">
</a>
<a href="https://www.facebook.com/amouhadi" target="_blank">
<img src="images/facebook.png" alt="twitter icons">
</a>
</section>
<section class="footer-copyright">
<div>
© 2018 Design by Elham Amouhadi
</div>
</section>
</footer>
</body>
</html>