-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
398 lines (351 loc) · 15.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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
<!--
File Name: index.html
Author's Name: Sukhdeep Singh
Web Site Name: My Portfolio
File Description: This file contains all the pages of my portfolio site targeted specifically
for mobile platform. Whenever the user opens my desktop portfolio site on
mobile device, It automatically redirects to this mobile specific site.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>My Portfolio</title>
<!-- Font Family -->
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://d10ajoocuyu32n.cloudfront.net/mobile/1.3.1/jquery.mobile-1.3.1.min.css">
<!-- Extra Codiqa features -->
<link rel="stylesheet" href="css/codiqa.ext.css">
<!--themeroller css-->
<link rel="stylesheet" href="themes/myPortfolio.css" />
<!-- fotorama.css-->
<link href="http://fotorama.s3.amazonaws.com/4.4.6/fotorama.css" rel="stylesheet">
<link href="http://view.jquerymobile.com/1.3.2/dist/demos/_assets/css/jqm-demos.css" rel="stylesheet">
<!-- jQuery and jQuery Mobile -->
<script src="https://d10ajoocuyu32n.cloudfront.net/jquery-1.9.1.min.js"></script>
<script src="https://d10ajoocuyu32n.cloudfront.net/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
<!-- fotorama js-->
<script src="http://fotorama.s3.amazonaws.com/4.4.6/fotorama.js"></script>
<!-- Extra Codiqa features -->
<script src="js/codiqa.ext.js"></script>
</head>
<body>
<!---------------Home Page----------------->
<div data-role="page" id="home" data-theme="b" >
<!------------Header at Top of the page---------------->
<div data-role="header" data-position="inline" data-theme="b">
<h1>My Portfolio</h1>
<a href="#nav-panel" data-icon="bars">Menu</a>
</div>
<!-------------Content of the page-------------------->
<div data-role="content" data-theme="b">
<!----Page Logo----->
<div id="logo" style= "width: 100%; text-align: center;">
<img src="img/logo.png" alt="image" style = " display: block; margin-left: auto; margin-right: auto; width=237px; height=60px;">
</div>
<!---------------Nav Bar------------------>
<div data-role="navbar" data-iconpos="top" data-theme="b" >
<ul>
<li>
<a href="#home" data-transition="slidefade" data-theme="b" data-icon="home">Home</a>
</li>
<li>
<a href="#aboutMe" data-transition="slidefade" data-theme="b" data-icon="info">About Me</a>
</li>
<li>
<a href="#contact" data-transition="slidefade" data-theme="b" data-icon="bars">Contact Me</a>
</li>
</ul>
</div>
<!-----Project & Service Button------->
<div id="navbuttons">
<a id="projectsButton" href="#projects" data-position="inline" data-transition="slidefade"><img src="img/projects.png" alt="image"></a>
<a id="serviceButton" href="#services" data-position="inline" data-transition="slidefade"><img src="img/services.png" alt="image"></a>
</div>
<!-------------Featured Work Slider----------------->
<h1>Featured Work</h1>
<div class="fotorama">
<img src="img/abee.jpg">
<img src="img/smartphones.jpg">
<img src="img/jchat.jpg">
<img src="img/Tictactoe.jpg">
</div>
<!------Full Site Button-------->
<a href="http://webdesign4.georgianc.on.ca/~200245935/advweb/portfolio/index.php" target="_blank" data-role="button" data-position="inline" data-transition="slidefade">Full Site</a>
</div>
<div data-role="panel" data-position-fixed="true" data-theme="g" id="nav-panel">
<ul data-role="listview" data-theme="g" class="nav-search">
<li>
<a href="#projects" data-theme="g" data-transition="slidefade">My Projects</a>
</li>
<li>
<a href="#services" data-theme="g" data-transition="slidefade">Services</a>
</li>
<li>
<a href="#aboutMe" data-theme="g" data-transition="slidefade">About Me</a>
</li>
<li>
<a href="#contact" data-theme="g" data-transition="slidefade">Contact Me</a>
</li>
<li>
<a href="login.php" data-theme="g" data-transition="slidefade">Business Contacts</a>
</li>
<li>
<a href="http://webdesign4.georgianc.on.ca/~200245935/advweb/portfolio/index.php" data-theme="g" target="_blank">Full Site</a>
</li>
</ul>
</div>
<!-----------Footer-------------->
<div data-theme="b" data-role="footer" data-position="fixed">
<h3> ©2013 Sukhdeep Singh </h3>
</div>
</div><!--End of Home Page-->
<!--------------About Me Page----------------->
<div data-role="page" id="aboutMe" data-theme="a">
<div data-role="header" data-position="inline" data-theme="a">
<a href="#home" data-role="button" data-direction="reverse" data-transition="slidefade" data-icon="arrow-l" data-iconpos="left" data-inline="true">Back</a>
<h1>About Me</h1>
</div>
<div data-role="content" data-theme="a">
<div style="width: 250px; height: 250px; position: relative;">
<img src="img/1.jpg" alt="image" style=" width: 250px; height: 250px;position: absolute; margin-left: 14px; margin-top: 16px">
</div>
<h1>Creating thoughtful user experinces</h1>
<h2>Writiing efficient code</h2>
<p>
Computer Programming as a profession is what I enjoy doing the most. It's really fun working with System oriented languages
such as Java,C#,C,C++ and the Web oriented Languages such as HTML5,CSS3,PHP,JavaScript. While I find the Visual element
of the Web very attractive, visually Stunning and engaging, the System Programming enables me to create powerful
System and Mobile Apps.
</p>
<ul data-role="listview">
<li>
<a href="#profHighlights" data-rel="dialog" ><h2>Professional Highlights</h2></a>
</li>
<li>
<a href="#education" data-rel="dialog" ><h2>Education</h2></a>
</li>
<li>
<a href="#background" data-rel="dialog" ><h2>Background</h2></a>
</li>
</ul>
</div>
<div data-theme="a" data-role="footer" data-position="fixed">
<h3> ©2013 Sukhdeep Singh </h3>
</div>
</div><!--End of About Me Page-->
<!--Professional Dialog page-->
<div data-role="page" id="profHighlights">
<div data-role="header" >
<h1>Professional Highlights</h1>
</div>
<ul>
<li>
<p>
Sound Knowledge of Java Programming Language and Web Programming Languages like HTML5, CSS3, PHP and also familiar with JavaScript
</p>
</li>
<li>
<p>
Expertise working with Windows XP/Vista/7/8/8.1, and able to fix various Application and Operating System level Errors
</p>
</li>
<li>
<p>
Good Knowledge of Database and able to perform SQL queries
</p>
</li>
<li>
<p>
Familiar with Microsoft .NET Framework Languages Like C# and VB.NET
</p>
</li>
<li>
<p>
Good Knowledge of Programming Languages like C,C++ and C on Arduino
</p>
</li>
<li>
<p>
Familiar with Windows 8, 8.1 App Developments
</p>
</li>
<li>
<p>
Good Interpersonal and Communication Skills
</p>
</li>
<li>
<p>
Recognized as a hardworking, co-operative, flexible to work independently and with the team; Always eager to learn new skills
</p>
</li>
</ul>
</div><!--End of Professional Highlights dialog page-->
<!--Education Dialog page-->
<div data-role="page" id="education" >
<div data-role="header" data-position="inline">
<h2>Education</h2>
</div>
<ul>
<li>
<p>
<strong>Computer Programmer(Co-op) Diploma</strong>
</p>
<p class="ui-li-aside">
Jan. 2013 - Dec. 2014
</p>
<p>
Georgian College, Barrie, ON
</p>
</li>
<li>
<p>
<strong>Worksmart Campus Certificate</strong>
</p>
<p class="ui-li-aside">
May 2013
</p>
<p>
Georgian College, Barrie, ON
</p>
</li>
<li>
<p>
<strong> Bachelor of Science in Information Technology</strong>
</p>
<p class="ui-li-aside">
June 2009 – May 2012
</p>
<p>
Lyallpur Khalsa College Jalandhar, Punjab, India
</p>
</li>
</ul>
</div><!--End of Education Dialog page-->
<!--Background dialog page-->
<div data-role="page" id="background" >
<div data-role="header" data-position="inline">
<h2>Background</h2>
</div>
<ul>
<li>
<p>
Born and Raised in Small town Jalandhar,Punjab,India; I moved to Canada in December 2012 for Higher Studies.
Enrolled in Computer Programmer diploma, since then I've learnt great programming skills and practices.
I've worked on a Contract work as well for developing a web site. I really like Java, C#, HTML5, CSS3 and PHP programming languages.
</p>
</li>
</ul>
</div><!--End of Background diaog page-->
<!-------------Contact Me Page--------------->
<div data-role="page" id="contact" data-theme="c">
<div data-role="header" data-position="inline" data-theme="c">
<a href="#home" data-role="button" data-direction="reverse" data-transition="slidefade" data-icon="arrow-l" data-iconpos="left" data-inline="true">Back</a>
<h1>Contact Me</h1>
</div>
<div data-role="content" data-theme="c">
<h2>Contact Info: </h2>
<h3><em>Phone:</em> +1 705-770-5820 </h3>
<h3><em>Email:</em><a href="mailto:[email protected]"> [email protected]</a></h3>
<h3><em>Address:</em> 533,Grove St,East Barrie,ON,Canada. </h3>
<!----------- Keep Connected Panel---------------->
<div id="connect_panel">
<h2>Keep Connected...</h2>
<a href="https://www.facebook.com/Sukh9212" target="_blank"><img src="icons/facebook.png"></a>
<a class="connect_icons" href="https://twitter.com/Sukh9212" target="_blank"><img src="icons/twitter.png"></a>
<a class="connect_icons" href="http://ca.linkedin.com/pub/sukhdeep-singh/74/309/574/" target="_blank"><img src="icons/linkedin.png"></a>
<a class="connect_icons" href="http://www.youtube.com/channel/UCVamaOWXDn0HdEZCJj5595Q" target="_blank"><img src="icons/youtube.png"></a>
<a class="connect_icons" href="https://github.com/Sukh9212" target="_blank"><img src="icons/github.png"></a>
</div>
</div>
<div data-theme="c" data-role="footer" data-position="fixed">
<h3>©2013 Sukhdeep Singh</h3>
</div>
</div><!--End of Contact Me Page-->
<!-------------Projects Page--------------->
<div data-role="page" id="projects" data-theme="d">
<div data-role="header" data-position="inline" data-theme="d">
<a href="#home" data-role="button" data-direction="reverse" data-transition="slidefade" data-icon="arrow-l" data-iconpos="left" data-inline="true">Back</a>
<h1>Projects</h1>
</div>
<div data-role="content" data-theme="d">
<div>
<h2>Java Chat Server</h2>
<p>
This is a Chat Server designed as a open chat room. I built this project two years ago using Swing, Multithreading, RMI and Socket Programming of Java.
</p>
<a href="https://github.com/Sukh9212/Chat-Server" target="_blank"><img src="img/jchat.jpg" alt="image" style=" width: 250px; height: 250px;position: absolute; margin-left: 14px; margin-top: 16px"></a>
</div>
<div class="project_list">
<h2>Smartphones Today</h2>
<p>
Want to buy a New Phone??. Check this site out first to know every specific detail about the Current Smartphones available in the market. This site is built using php and uses a dynamic content stored in database.
</p>
<a href="http://webdesign4.georgianc.on.ca/~200245935/comp1006/assign2/default.php" target="_blank"><img src="img/smartphones.jpg" alt="image" style=" width: 250px; height: 250px;position: absolute; margin-left: 14px; margin-top: 16px"></a>
</div>
<div class="project_list">
<h2>Abee Concrete</h2>
<p>
A Website for a concrete company from Brampton,Ontario. This was a first Contract work I did just after the Semester one of my Program. This site covers the basic needs of the company and represents their work.
</p>
<a href="http://abeeconc.com" target="_blank"><img src="img/abee.jpg" alt="image" style=" width: 250px; height: 250px;position: absolute; margin-left: 14px; margin-top: 16px"></a>
</div>
<div class="project_list">
<h2>Tic Tac Toe Game</h2>
<p>
I built this game during the Semester one of my program for the Computer Architecture Course. It Runs on Hackvision Which is a Modified Version of Arduino designed specifically for Games.
</p>
<a href="http://www.youtube.com/watch?v=LjqEQH7oU7s" target="_blank"><img src="img/Tictactoe.jpg" alt="image" style=" width: 250px; height: 250px;position: absolute; margin-left: 14px; margin-top: 16px"></a>
</div>
<div id="spacer"></div>
</div>
<div data-theme="d" data-role="footer" data-position="fixed">
<h3> ©2013 Sukhdeep Singh </h3>
</div>
</div><!--End of Projects Page-->
<!--------------Services Page--------------->
<div data-role="page" id="services" data-theme="e">
<div data-role="header" data-position="inline" data-theme="e">
<a href="#home" data-role="button" data-direction="reverse" data-transition="slidefade" data-icon="arrow-l" data-iconpos="left" data-inline="true">Back</a>
<h1>Services</h1>
</div>
<div data-role="content" data-theme="e">
<h2>Potential Coding on these Platforms:</h2>
<img class="img-circle" src="img/web.jpg" width="180" height="180" alt="Web image">
<div class="services_list">
<h2>Web Development</h2>
<p>
Web is the most alive platform for Developers and Designers. I specialize in Languages such as HTML5, CSS3, PHP, JavaScript, jQuery etc.
With some designing abilities I can build basic websites to content managed websites using php with database connectivity as a backhand for the page content.
I can build Sites with respnosive design adapting to various viewport sizes and devices which is the essential for any website.
</p>
</div>
<img class="img-circle" src="img/windows8.jpg" width="180" height="180" alt="Windows 8.1 apps image">
<div class="services_list">
<h2>App Development(Android, Windows 8,8.1)</h2>
<p>
Still in the learning phase for developing apps for well Established app market such as android & ios and Developing market such as Windows 8, Windows 8.1, Windows phone 8 etc.
I've done some independent study on Android app development. Since it is Java so if given a chance I can also work to develop android apps and similarly with Windows apps
I've done independent study on developing apps and I've Used C# as programming language. For Windows app I've also Used HTML5, CSS3 and JavaScript technologies.
</p>
</div>
<img class="img-circle" src="img/java.jpg" width="180" height="180" alt="Java image">
<div class="services_list">
<h2>Software Development</h2>
<p>
Expertise in the Java Programming language and in learning phase of C# progamming language. With these two Most powerful
languages in the pocket, I can build powerful standalone desktop applications. I've build a Java Chat Server using ofcourse
java Which uses rich cores of the language and utilizes Swing, Multithreading, RMI and the most importantly Socket Programming.
</p>
</div>
</div>
<div data-theme="e" data-role="footer" data-position="fixed">
<h3> ©2013 Sukhdeep Singh </h3>
</div>
</div><!--End of Services Page-->
</body>
</html>