-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
298 lines (267 loc) · 12.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mohamed Abdulaziz</title>
<link rel="shortcut icon" type="image/x-icon" href="images/myfavicon.ico">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
</head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
body, html {
height: 100%;
color: #0;
line-height: 1.8;
}
.video-container {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.video-container video {
/* Make video to at least 100% wide and tall */
min-width: 100%;
min-height: 100%;
/* Setting width & height to auto prevents the browser from stretching or squishing the video */
width: auto;
height: auto;
/* Center the video */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/* First image (Logo. Full height) */
.bgimg-1 {
background-image: url('images/cover.png');
min-height: 100%;
}
/* Second image (Portfolio) */
.bgimg-2 {
background-image: url("images/robot-lab.png");
min-height: 400px;
}
/* Third image (Contact) */
.bgimg-3 {
background-image: url("images/organized-desk.jpg");
min-height: 400px;
}
.w3-wide {letter-spacing: 10px;}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: scroll;
}
}
</style>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top w3-xlarge w3-opacity w3-hover-opacity-off">
<div class="w3-bar" id="myNavbar">
<a class="w3-bar-item w3-button w3-hover-black w3-hide-medium w3-hide-large w3-right" href="javascript:void(0);" onclick="toggleFunction()" title="Toggle Navigation Menu">
<i class="fas fa-bars"></i>
</a>
<a href="https://www.mohamedabdulaziz.com/#home" class="w3-bar-item w3-button">
<i class="fas fa-home"></i> HOME
</a>
<a href="https://www.mohamedabdulaziz.com/#about" class="w3-bar-item w3-button w3-hide-small">
<i class="fas fa-user"></i> ABOUT
</a>
<a href="https://www.mohamedabdulaziz.com/#projects" class="w3-bar-item w3-button w3-hide-small">
<i class="fas fa-th"></i> PROJECTS
</a>
<a href="https://www.mohamedabdulaziz.com/#contact" class="w3-bar-item w3-button w3-hide-small">
<i class="fas fa-envelope"></i> CONTACT
</a>
<a href="https://www.mohamedabdulaziz.com/CV.pdf" class="w3-bar-item w3-button w3-hide-small">
<i class="fas fa-file-alt"></i> CV
</a>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium">
<a href="https://mohamedabdulaziz.com/#about" class="w3-bar-item w3-button w3-dark-grey" onclick="toggleFunction()"><i class="fas fa-user"></i> ABOUT</a>
<a href="https://mohamedabdulaziz.com/#projects" class="w3-bar-item w3-button w3-dark-grey" onclick="toggleFunction()"><i class="fas fa-th"></i> PROJECTS</a>
<a href="https://mohamedabdulaziz.com/#contact" class="w3-bar-item w3-button w3-dark-grey" onclick="toggleFunction()"><i class="fas fa-envelope"></i> CONTACT</a>
<a href="https://mohamedabdulaziz.com/CV.pdf" class="w3-bar-item w3-button w3-dark-grey" onclick="toggleFunction()"><i class="fas fa-file-text"></i> CV</a>
</div>
</div>
<!-- First Parallax Image with Logo Text -->
<div class="bgimg-1 w3-display-container" style="opacity:0.9" id="home">
<div class="video-container w3-hide-small">
<video loop muted autoplay>
<source src="images/cover.mp4" type="video/mp4" />
</video>
</div>
<div class="w3-display-middle" style="white-space:nowrap;">
<span class="w3-center w3-padding-large w3-black w3-xxlarge w3-wide w3-animate-opacity">MOHAMED
<span class="w3-hide-small">ABDULAZIZ
</span>
</span>
</div>
</div>
<!-- Container (About Section) -->
<div class="w3-content w3-container w3-padding-64" id="about">
<h3 class="w3-center">ABOUT ME</h3>
<div class="w3-row">
<div class="w3-col m6 w3-center w3-padding-large">
<img src="images/mojo.jpg" class="w3-round w3-image" alt="Photo of Me" width="500" height="333">
</div>
<!-- Hide this text on small devices -->
<div class="w3-col m6 w3-hide-small w3-padding-large">
<h3>I hold a Bachelor of Aerospace Engineering and am pursuing a Master of Software Engineering degree with a focus on blockchain development. I am currently researching blockchain and AI applications for humanitarian projects and the government sector. My goal is to improve the human condition through blockchain and AI technologies.</h3>
</div>
</div>
<p class="w3-xlarge w3-center w3-padding-16">What I'm good at:</p>
<p class="w3-xlarge"><i class="fas fa-coffee"></i> Programming <span class="w3-hide-small">(Python, C++, MATLAB)</span></p>
<div class="w3-light-grey">
<div class="w3-container w3-padding-small w3-dark-grey w3-center" style="width:90%">90%</div>
</div>
<p class="w3-xlarge"><i class="fas fa-laptop"></i> Machine learning <span class="w3-hide-small">(Tensorflow, Keras)</span></p>
<div class="w3-light-grey">
<div class="w3-container w3-padding-small w3-dark-grey w3-center" style="width:80%">80%</div>
</div>
<p class="w3-xlarge"><i class="fas fa-database"></i> Blockchain development <span class="w3-hide-small">(Hyperledger Fabric, Ethereum)</span></p>
<div class="w3-light-grey">
<div class="w3-container w3-padding-small w3-dark-grey w3-center" style="width:55%">55%</div>
</div>
<p class="w3-xlarge"><i class="fas fa-language"></i> Languages <span class="w3-hide-small">(English, Turkish, Arabic, Somali, bit of Urdu)</span></p>
<div class="w3-light-grey">
<div class="w3-container w3-padding-small w3-dark-grey w3-center" style="width:90%">90%</div>
</div>
</div>
<!-- Second Parallax Image with Portfolio Text -->
<div class="bgimg-2 w3-display-container w3-opacity-min" id="projects">
<div class="w3-display-middle">
<span class="w3-xxlarge w3-text-white w3-wide" style="text-shadow:2px 2px 0 #444">PROJECTS</span>
</div>
</div>
<!-- Container (Portfolio Section) -->
<div class="w3-content w3-container w3-padding-64">
<div class="item w3-center">
<h2 class="w3-hover-text-blue"><a href="https://github.com/demmojo/text-gen-flask">text-gen-flask</a></h2>
<h5> A text generator web app using a pre-trained recurrent neural network model. The Python application is served using a uWSGI application server and Nginx as the front-end reverse proxy. Check websites for a live demonstration:</h5>
<h4 class="w3-text-blue-grey w3-hover-text-blue"><a href="https://shakespeare.mohamedabdulaziz.com"> Shakespeare text Generator</a></h4>
<h4 class="w3-text-blue-grey w3-hover-text-blue"><a href="https://nazim.mohamedabdulaziz.com"> Nazim Hikmet Poetry Generator</a></h4>
<code class="item-tag">generator </code> <code class="item-tag">web app </code> <code class="item-tag">rnn</code>
</div>
<div class="item w3-center">
<h2 class="w3-hover-text-blue"><a href="https://github.com/demmojo/text-rnn">text-rnn</a></h2>
<h5> Train either a bidirectional or normal LSTM recurrent neural network to generate text using any dataset. You can also continue training a pre-trained model.</h5>
<code class="item-tag">nlp </code> <code class="item-tag">text </code> <code class="item-tag">lstm</code>
</div>
<div class="item w3-center">
<h2 class="w3-hover-text-blue"><a href="https://github.com/demmojo/lstm-electric-load-forecast">lstm-electric-load-forecast</a></h2>
<h5> Forecast power consumption of a household data taken over almost 4 years using deep learning.</h5>
<code class="item-tag">time-series </code> <code class="item-tag">lstm </code> <code class="item-tag">smart-grids</code>
</div>
</div>
<!-- Third Parallax Image with Portfolio Text -->
<div class="bgimg-3 w3-display-container w3-opacity-min" id="contact">
<div class="w3-display-middle">
<span class="w3-xxlarge w3-text-white w3-wide" style="text-shadow:2px 2px 0 #444">CONTACT</span>
</div>
</div>
<!-- Container (Contact Section) -->
<div class="w3-content w3-container w3-padding-64">
<div class="w3-row w3-padding-32 w3-section">
<div class="m4 w3-container">
<div class="m8 w3-panel">
<div class="w3-large w3-margin-bottom">
<i class="fas fa-map-marker fa-fw w3-hover-text-black w3-xlarge w3-margin-right"></i> Ankara, Turkey<br>
<i class="fas fa-phone fa-fw w3-hover-text-black w3-xlarge w3-margin-right"></i> Phone: +90 5060559422<br>
<i class="fas fa-envelope fa-fw w3-hover-text-black w3-xlarge w3-margin-right"></i>
Email: [email protected]<br>
</div>
<h4>If you would like to leave me a note:</h4>
<form id="contactform" method="POST">
<div class="w3-row-padding" style="margin:0 -16px 8px -16px">
<div class="w3-half">
<input class="w3-input w3-border" type="text" name="name" placeholder="Your name">
</div>
<div class="w3-half">
<input class="w3-input w3-border" type="email" name="_replyto" placeholder="Your email">
</div>
</div>
<input type="hidden" name="_next" value="https://demmojo.github.io/" />
<input type="hidden" name="_subject" value="Website contact" />
<textarea rows="5" class="w3-input w3-border" name="message" placeholder="Your message"></textarea>
<input type="text" name="_gotcha" style="display:none" />
<button class="w3-button w3-black w3-right w3-section" type="submit">
<i class="fas fa-paper-plane"></i> SEND MESSAGE
</button>
</form>
<script async>
var contactform = document.getElementById('contactform');
contactform.setAttribute('action', '//formspree.io/' + 'mo.hassaniv' + '@' + 'gmail' + '.' + 'com');
</script>
</div>
</div>
</div>
</div>
<script src="scripts/jquery.min.js"></script>
<script async>
$(document).ready(function(){
// Add smooth scrolling to all links
$("a").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
if (this.hash !== "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 800, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
});
});
// Change style of navbar on scroll
window.onscroll = function() {myFunction()};
function myFunction() {
var navbar = document.getElementById("myNavbar");
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
navbar.className = "w3-bar" + " w3-card" + " w3-animate-top" + " w3-white";
} else {
navbar.className = navbar.className.replace(" w3-card w3-animate-top w3-white", "");
}
}
// Used to toggle the menu on small screens when clicking on the menu button
function toggleFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-64 w3-opacity w3-hover-opacity-off">
<a href="#home" class="w3-button w3-light-grey"><i class="fas fa-arrow-up w3-margin-right"></i>To the top</a>
<div class="w3-xlarge w3-section">
<a href="https://github.com/demmojo"><i class="fab fa-github w3-hover-opacity"></i></a>
<a href="https://www.facebook.com/AfroMojo"><i class="fab fa-facebook w3-hover-opacity"></i></a>
<a href="https://twitter.com/MohMohAziz"><i class="fab fa-twitter w3-hover-opacity"></i></a>
<a href="https://www.linkedin.com/in/mohamed-abdulaziz-71a736140/"><i class="fab fa-linkedin w3-hover-opacity"></i></a>
</div>
</footer>
</body>
</html>