-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1134 lines (1002 loc) · 64.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
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US" prefix="og: http://ogp.me/ns#" data-version="3.0.9">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="Michelle R Gilbank development">
<title>Michelle R Gilbank development</title>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="/css/reset.css">
<style data-fontset-id="ce-fontset" type="text/css">
/*Fontsets*/
@font-face {
font-family: 'Circular Std Book';
src: url('http://edenpulse.com/fonts/CircularStd-Book.eot');
/* IE9 Compat Modes */
src: url('http://edenpulse.com/fonts/CircularStd-Book.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('http://edenpulse.com/fonts/CircularStd-Book.woff') format('woff'), /* Modern Browsers */
url('http://edenpulse.com/fonts/CircularStd-Book.ttf') format('truetype'), /* Safari, Android, iOS */
url('http://edenpulse.com/fonts/CircularStd-Book.svg#dd452d63ae05ddb466f19713a7d09fd5') format('svg');
/* Legacy iOS */
font-style: normal;
font-weight: 400;
}
@font-face {
font-family: 'Circular Std Bold';
src: url('http://edenpulse.com/fonts/CircularStd-Bold.eot');
/* IE9 Compat Modes */
src: url('http://edenpulse.com/fonts/CircularStd-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('http://edenpulse.com/fonts/CircularStd-Bold.woff') format('woff'), /* Modern Browsers */
url('http://edenpulse.com/fonts/CircularStd-Bold.ttf') format('truetype'), /* Safari, Android, iOS */
url('http://edenpulse.com/fonts/CircularStd-Bold.svg#b333381778fc1f96de44d359c7f8b95e') format('svg');
/* Legacy iOS */
font-style: normal;
font-weight: 700;
}
</style>
<style id="ce-fontset" type="text/css">
body,
textarea,
input {
font-family: "Circular Std Book", Helvetica, Arial, sans-serif !important;
font-style: normal;
font-weight: 400;
}
.regular {
font-family: "Circular Std Book", Helvetica, Arial, sans-serif !important;
font-style: normal;
font-weight: 400;
}
.bold,
.wysiwyg-ce h1,
.wysiwyg-ce h2,
.wysiwyg-ce h3,
.wysiwyg-ce h4,
.wysiwyg-ce h5,
.wysiwyg-ce h6,
#soularity h1,
#soularity h2,
#soularity h3,
#soularity h4,
#soularity h5,
#soularity h6 {
font-family: "Circular Std Bold", Helvetica, Arial, sans-serif;
font-style: normal;
font-weight: 700;
}
</style>
<link type="text/css" rel="stylesheet" href="/css/style.css">
<link type="text/css" rel="stylesheet" href="/css/custom.css">
<link rel="shortcut icon" href="/img/favicon.jpeg">
<!-- google analytics
<script async="" src="/js/analytics.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-38770408-1', 'auto');
ga('send', 'pageview');
</script>
-->
<meta name="description" content="Michelle R Gilbank development">
<meta name="robots" content="noodp">
<meta property="og:type" content="website">
<meta property="og:title" content="Michelle R Gilbank development">
<meta property="og:description" content="Michelle R Gilbank development">
<meta property="og:url" content="http://www.gilbank.net/">
<meta property="og:site_name" content="Michelle R Gilbank development">
<link rel="stylesheet" id="mediaelement-css" href="./css/mediaelementplayer.min.css" type="text/css" media="all">
<link rel="stylesheet" id="wp-mediaelement-css" href="./css/wp-mediaelement.min.css" type="text/css" media="all">
<link rel="stylesheet" id="jetpack_css-css" href="./css/jetpack.css" type="text/css" media="all">
<script type="text/javascript" src="./js/jquery.js"></script>
<script type="text/javascript" src="./js/jquery-migrate.min.js"></script>
</head>
<body class="home page page-id-4 page-template-default">
<!--Word of the Day by TheFreeDictionary.com-->
<div style="width:300px;position:relative;background-color:#CCC999;padding:4px">
<div style="font:bold 10pt Verdana;color:#000000">Word of the Day</div>
<style>
#WordOfTheDay {width:100%;border:1px #663333 solid;background-color:#CCC999}
#WordOfTheDay H3 {font:bold 10pt Verdana;color:#000000}
#WordOfTheDay TD.WoDLeft {font:bold 8pt Verdana;color:#000000}
#WordOfTheDay TD {font:normal 8pt Verdana;color:#000000}
#WordOfTheDay A {color:#006699}
</style>
<div id="tfd_wod_div"><table id="WordOfTheDay">
<tr><td colspan="2" align="center"><h3 style="margin-bottom:3pt">
<a href="http://www.thefreedictionary.com/abase">abase</a></h3></td></tr>
<tr><td class="WoDLeft" valign="top" align="right">Definition:</td>
<td align="left">Cause to feel shame; hurt the pride of.</td></tr>
<tr><td class="WoDLeft" valign="top">Synonyms:</td><td>
<a href="http://www.freethesaurus.com/chagrin">chagrin</a>,
<a href="http://www.freethesaurus.com/humiliate">humiliate</a>,
<a href="http://www.freethesaurus.com/humble">humble</a>,
<a href="http://www.freethesaurus.com/mortify">mortify</a>
</td></tr></table></div>
<script type="text/javascript">document.getElementById("tfd_wod_div").style.visibility="hidden"</script>
<script type="text/javascript" src="http://img.tfd.com/daily/wod.js" charset="UTF-8"></script>
<script type="text/javascript">document.getElementById("tfd_wod_div").style.visibility=""</script>
<div style="font:normal 7pt Verdana;color:#000000">
<a style="color:#000000" href="http://www.thefreedictionary.com/lookup.htm#Word-of-the-Day" rel="nofollow">Word of the Day</a>
provided by <a style="color:#000000" href="http://www.thefreedictionary.com/">TheFreeDictionary.com</a>
</div></div>
<!--end of Word of the Day-->
<br/>
<!--Today's Holiday by TheFreeDictionary.com-->
<div style="width:300px;position:relative;background-color:#CCC999;padding:4px">
<div style="font:bold 10pt Verdana;color:#000000">Today's Holiday</div>
<style>
#TodaysHoliday {width:100%;border:1px #663333 solid;background-color:#CCC999}
#TodaysHoliday H3 {margin-top:0px;font:bold 10pt Verdana;color:#000000}
#TodaysHoliday TD {font:normal 8pt Verdana;color:#000000}
#TodaysHoliday A {color:#006699}
</style>
<div id=tfd_holiday_div><table id=TodaysHoliday class=TodaysHoliday><tr><td>
<h3>Whirling Dervish Festival</h3><span>Each year, up to a million people flood <a href="http://encyclopedia.thefreedictionary.com/Konya">Konya<a>, Turkey, on the anniversary of the death of the poet and Sufi Islamic mystic <a href="http://encyclopedia.thefreedictionary.com/Jalal+ad-Din+Muhammad+Rumi">Jelaluddin al-Rumi</a>. Rumi's teachings are the basis for the Sufi Muslim order known as Mevlevi, which uses music and dance to experience spiritual ecstasy. Leading up to December 17, thousands of visitors arrive to partake in exhibits and lectures related to Rumi and the Mevlevi order. At the climax of the festival, the Mevlevis perform their <a href="http://encyclopedia.thefreedictionary.com/Sufi+whirling">whirling dance</a>, wearing costumes that feature white trousers, a full white overskirt, and tall cylindrical hats. </span>
<a target="_blank" href="http://encyclopedia2.thefreedictionary.com/Urs+of+Jelaluddin+al-Rumi"><b>More...</b></a></td></tr></table></div>
<script type="text/javascript">document.getElementById("tfd_holiday_div").style.visibility="hidden"</script>
<script type="text/javascript" src="http://img.tfd.com/daily/holiday.js" charset="UTF-8"></script>
<script type="text/javascript">document.getElementById("tfd_holiday_div").style.visibility=""</script>
<div style="font:normal 7pt Verdana;color:#000000">
<a style="color:#000000" href="http://www.thefreedictionary.com/lookup.htm#Today's-Holiday" rel="nofollow">Today's Holiday</a>
provided by <a style="color:#000000" href="http://www.thefreedictionary.com/">TheFreeDictionary.com</a>
</div></div>
<!--end of Today's Holiday-->
<br/>
<!--Quote of the Day by TheFreeDictionary.com-->
<div style="width:300px;position:relative;background-color:#CCC999;padding:4px">
<div style="font:bold 10pt Verdana;color:#000000">Quote of the Day</div>
<style>
#QuoteOfTheDay {width:100%;border:1px #663333 solid;background-color:#CCC999}
#QuoteOfTheDay TD {font:normal 8pt Verdana;color:#000000}
#QuoteOfTheDay A {color:#006699}
</style><div id="tfd_quote_div">
<table id="QuoteOfTheDay"><tr><td align="left">
Consequences are unpitying. Our deeds carry their terrible consequences, quite apart from any fluctuations that went before—consequences that are hardly ever confined to ourselves.
<br/><b><a href="http://encyclopedia2.thefreedictionary.com/George+Eliot">George Eliot</a></b><br/>(1819-1880)</td></tr></table></div>
<script type="text/javascript">document.getElementById("tfd_quote_div").style.visibility="hidden"</script>
<script type="text/javascript" src="http://img.tfd.com/daily/quote.js" charset="UTF-8"></script>
<script type="text/javascript">document.getElementById("tfd_quote_div").style.visibility=""</script>
<div style="font:normal 7pt Verdana;color:#000000">
<a style="color:#000000" href="http://www.thefreedictionary.com/lookup.htm#Quote-of-the-Day" rel="nofollow">Quote of the Day</a>
provided by <a style="color:#000000" href="http://www.thefreelibrary.com/">The Free Library</a>
</div></div>
<!--end of Quote of the Day-->
<br/>
<!--Word Trivia by FreeThesaurus.com-->
<div style="width:300px;position:relative;background-color:#CCC999;padding:4px">
<div style="font:bold 10pt Verdana;color:#000000">Word Trivia</div>
<style>
#WTOfTheDay {width:100%;border:1px #663333 solid;background-color:#CCC999}
#WTOfTheDay H3 {margin-top:0px;font:bold 10pt Verdana;color:#000000}
#WTOfTheDay TD {font:normal 8pt Verdana;color:#000000}
#WTOfTheDay A {color:#006699}
#WTOfTheDay p {margin-top:4pt;margin-bottom:1pt;text-indent: -16pt;padding-left:16pt}
</style>
<div id="tfd_trivia_div">
<table class=WTOfTheDay id=WTOfTheDay><tr><td>
<h3>Today's topic: <a href="http://www.freethesaurus.com/sleeping">sleeping</a></h3>
<div><p><a href="http://www.freethesaurus.com/cubicle"><b>cubicle</b></a> - Originally a small room for sleeping—from Latin cumb, "lie down"—that was separated from a larger room. <a href="http://www.thefreedictionary.com/cubicle">More...</a></p><p><a href="http://www.freethesaurus.com/breakfast"><b>breakfast</b></a> - Literally means "breaking the fast"—of the night, as it is the first meal after sleeping. <a href="http://www.thefreedictionary.com/breakfast">More...</a></p><p><a href="http://www.freethesaurus.com/Dormition"><b>dormition</b></a> - A peaceful and painless death, as well as the act of sleeping or falling asleep. <a href="http://www.thefreedictionary.com/Dormition">More...</a></p><p><a href="http://www.freethesaurus.com/incubate"><b>incubate</b></a>, <a href="http://www.freethesaurus.com/incubation"><b>incubation</b></a> - Latin incubare, the source of incubate, literally meant "lie down on"; incubation once had the sense of sleeping in a sacred place or temple for oracular purposes. <a href="http://www.thefreedictionary.com/incubate">More...</a></p></div></td></tr></table></div>
<script type="text/javascript">document.getElementById("tfd_trivia_div").style.visibility="hidden"</script>
<script type="text/javascript" src="http://img.tfd.com/daily/trivia.js" charset="UTF-8"></script>
<script type="text/javascript">document.getElementById("tfd_trivia_div").style.visibility=""</script>
<div style="font:normal 7pt Verdana;color:#000000">
<a style="color:#000000" href="http://www.thefreedictionary.com/lookup.htm#Word-Trivia" rel="nofollow">Word Trivia</a>
provided by <a style="color:#000000" href="http://www.freethesaurus.com/">FreeThesaurus.com</a>
</div></div>
<!--end of Word Trivia of the Day-->
<br/>
<!--Spelling Bee by TheFreeDictionary.com-->
<div style="width:300px;position:relative;background-color:#CCC999;padding:4px">
<div style="font:bold 10pt Verdana;color:#000000">Spelling Bee</div>
<style>
#TfdBee {border:1px #663333 solid;background-color:#CCC999;padding:2px}
#TfdBee {font:normal 8pt Verdana;color:#000000}
#TfdBee A {color:#006699}
#TfdBee .spell_word {font-size:110%;clear:all;margin-bottom:5px}
#TfdBee INPUT { font-size: 11pt; margin:0; padding:0;}
#tfd_bee_sound {float:left;width:40px;height:40px;margin-right:5px}
#tfd_bee_sound IMG {width:100%;height:100%;border:none}
#tfd_bee_def {font-size:80%}
#tfd_bee_score {float:right;margin:0 0 5px 2px}
.tfd_bee_correct {background-color: lightgreen}
.tfd_bee_wrong {background-color: pink}
.tfd_bee_na {background-color: white}
</style>
<div id="TfdBee">
<form name="tfd_bee_f" style="display:inline;margin:0">
<div id="tfd_bee_difficulty">
difficulty level: <span style="white-space:nowrap">
<input type="radio" name="level" value="1" id="tfd_bee_level1"
onclick="tfd_level_click(this)"/><label for="tfd_bee_level1">easy</label>
<input type="radio" name="level" value="2" id="tfd_bee_level2"
onclick="tfd_level_click(this)" checked="yes"/><label for="tfd_bee_level2">hard</label>
<input type="radio" name="level" value="3" id="tfd_bee_level3"
onclick="tfd_level_click(this)"/><label for="tfd_bee_level3">expert</label></span>
</div><div id="tfd_bee_score">score: -</div>
<div id="tfd_bee_sound"></div>
<div id="tfd_bee_def"><b>please wait...</b></div>
<div id="tfd_bee_answ" style="font-size:110%"> </div>
<div class="spell_word">spell the word:
<input type="text" class="tfd_bee_na" id="tfd_bee_uword" size="12"/></div>
<input type="button" onclick="tfd_bee_answer()" value="answer"/>
<input type="button" onclick="tfd_bee_new()" value="new word"/>
<script type="text/javascript" src="http://img.tfd.com/daily/spellbee.js" charset="UTF-8"></script>
</form></div><div style="font:normal 7pt Verdana;color:#000000">
<a style="color:#000000" href="http://www.thefreedictionary.com/lookup.htm#Spelling-Bee" rel="nofollow">Spelling Bee</a>
provided by <a style="color:#000000" href="http://www.thefreedictionary.com/">TheFreeDictionary.com</a>
</div></div>
<!--end of Spelling Bee-->
<br/>
<!--Match Up by FreeThesaurus.com-->
<div style="width:300px;position:relative;background-color:#CCC999;padding:4px">
<div style="font:bold 10pt Verdana;color:#000000">Match Up</div>
<style>
#MatchUp {width:100%;border:1px #663333 solid;background-color:#CCC999}
#MatchUp TD {font:normal 8pt Verdana;color:#000000}
#MatchUp A {color:#006699}
#tfd_MatchUp INPUT.tfd_txt {border:1px #777 solid;height:16pt;font-size:10pt;width:100px;cursor:pointer;margin-top:2px;margin-right:4px;text-align:center}
</style>
<form name="SynMatch" method="get" action="http://www.thefreedictionary.com/_/MatchUp.aspx" style="display:inline;margin:0" target="_top">
<table id="MatchUp">
<tr><td>
<script type="text/javascript"
src="http://img.tfd.com/daily/matchup.js" charset="UTF-8"></script>
Match each word in the left column with its synonym on the right. When finished, click Answer to see the results. Good luck!<br/><br/><center>
<input type="button" value="Clear" onclick="tfd_mw_clear()"/> <input type="submit" value="Answer" onclick="this.form.res.value=tfd_mw_answers"/></center>
</td></tr></table></form>
<div style="font:normal 7pt Verdana;color:#000000">
<a style="color:#000000" href="http://www.thefreedictionary.com/lookup.htm#Match-Up" rel="nofollow">Match Up</a>
provided by <a style="color:#000000" href="http://www.freethesaurus.com/">FreeThesaurus.com</a>
</div></div>
<!--end of Match Up-->
<br/>
<!--Hangman by TheFreeDictionary.com-->
<div style="width:300px;position:relative;background-color:#CCC999;padding:4px">
<div style="font:bold 10pt Verdana;color:#000000">Hangman</div>
<style>
#Hangman {border:1px #663333 solid;background-color:#CCC999;height:240px}
</style>
<iframe id="Hangman" src="http://www.thefreedictionary.com/_/WoD/hangman.aspx?#xCCC999,x000000,x006699,8pt,Verdana,_blank" width="100%" scrolling="no" frameborder="0"></iframe>
<div style="font:normal 7pt Verdana;color:#000000">
<a style="color:#000000" href="http://www.thefreedictionary.com/lookup.htm#Hangman" rel="nofollow">Hangman</a>
provided by <a style="color:#000000" href="http://www.thefreedictionary.com/">TheFreeDictionary.com</a>
</div></div>
<!--end of Hangman-->
<br/>
<!--WordHub by TheFreeDictionary.com-->
<div style="width: 300px; position: relative; background-color: #CCC999; padding: 4px">
<div style="font: bold 10pt Verdana; color: #000000">WordHub</div>
<style type="text/css">
#t_wm {width: 100%;border: 1px #663333 solid;background-color: #CCC999;font: normal 8pt Verdana;color: #000000}
#t_wm H3 {margin-top: 0px;font: bold 10pt Verdana;color: #000000}
#t_wm A { color: #006699 }
</style>
<div id="t_wm"> Please wait...</div>
<div style="font: normal 7pt Verdana; color: #000000">
<a style="color: #000000" href="http://wordhub.com">WordHub</a> provided by <a style="color: #000000" href="http://www.thefreedictionary.com/">TheFreeDictionary.com</a>
</div>
</div>
<script type="text/javascript" src="http://img.tfd.com/daily/wordmaker.js" charset="UTF-8"></script>
<!--end of WordHub-->
<br/>
<!--Mismatch by FreeThesaurus.com-->
<div style="width:300px;position:relative;background-color:#CCC999;padding:4px">
<div style="font:bold 10pt Verdana;color:#000000">Mismatch</div>
<style>
#Mismatch {width:100%;border:1px #663333 solid;background-color:#CCC999}
#Mismatch TD {font:normal 8pt Verdana;color:#000000}
#Mismatch A {color:#006699}
#tfd_Mismatch INPUT.tfd_txt {border:1px #777 solid;border-radius:4px;height:16pt;font-size:10pt;width:100px;cursor:pointer;margin-top:4px;margin-right:8px;text-align:center;color:#eee;background:#777}
</style>
<form name="SynMatch" method="get" action="http://www.thefreedictionary.com/_/MatchUp.aspx" style="display:inline;margin:0" target="_top">
<input type=hidden name=mismatch value=1/>
<table id="Mismatch">
<tr><td>
<script type="text/javascript"
src="http://img.tfd.com/daily/mismatch.js" charset="UTF-8"></script>
Match each word in the left column with its antonym (opposite) on the right. When finished, click Answer to see the results. Good luck!<br/><br/><center>
<input type="button" value="Clear" onclick="tfd_mm_clear()"/> <input type="submit" value="Answer" onclick="this.form.res.value=tfd_mm_answers"/></center>
</td></tr></table></form>
<div style="font:normal 7pt Verdana;color:#000000">
<a style="color:#000000" href="http://www.thefreedictionary.com/lookup.htm#Mismatch" rel="nofollow">Mismatch</a>
provided by <a style="color:#000000" href="http://www.freethesaurus.com/">FreeThesaurus.com</a>
</div></div>
<!--end of Match Up-->
<header style="opacity: 1; top: 0px;">
<div id="navbar-bg" class="navbar" data-navbar-opacity="1" data-dropdown-transparent="enabled" style="opacity: 1;">
<!-- header bar background -->
</div>
<div id="navbar">
<div class="container">
<div class="row">
<div class="span12 navbar-inner">
<div class="logo custom">
<a id="logo" data-logo-height="24" class="has-logo" href="http://www.gilbank.net/" title="Michelle R Gilbank development"><svg xmlns="http://www.w3.org/2000/svg" viewBox="-198 196 444.1 203.3" enable-background="new -198 196 444.1 203.3"><g fill="#fff"><path d="m-190.7 390v-125.7h36.7v14.4c6.3-11.1 22.5-18.2 36.2-18.2 18 0 30.9 7.3 37.2 19.7 9.9-14.2 22-19.7 39-19.7 23.8 0 46.5 13.9 46.5 48.1v81.4h-37.2v-72.8c0-11.9-6.3-21.2-20-21.2s-21 10.4-21 21.5v72.5h-37.9v-72.8c0-11.9-6.3-21.2-20.2-21.2-13.4 0-20.7 10.4-20.7 21.8v72.2h-38.6"/></g><path d="m213.6 340.5c14.2 0 26.1 11.6 26.1 25.8 0 13.9-11.9 26.1-26.1 26.1-14.2 0-25.8-12.1-25.8-26.1 0-14.2 11.7-25.8 25.8-25.8" fill="#cfaf8f"/></svg></a>
</div>
<div class="nav-wrapper">
<div class="controls"><a class="open-nav"><span class="nav-icon"></span></a></div>
</div>
</div>
</div>
</div>
</div>
</header>
<div id="fullscreen-menu" class="full-height" style="top: 0px;">
<div class="menu-inner">
<nav class="fs-96px bold">
<ul id="menu-top-menu" class="menu">
<li id="menu-item-61" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-4 current_page_item menu-item-61"><a href="http://www.gilbank.net/">work</a></li>
<li id="menu-item-23" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-23"><a href="http://www.gilbank.net/about-me/">about</a></li>
<li id="menu-item-806" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-806"><a href="http://www.gilbank.net/contact/">contact</a></li>
<li id="menu-item-798" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-798"><a href="http://www.gilbank.net/classes/">classes</a></li>
</ul>
</nav>
<div class="follow-links">
<ul>
<li>
<a class="twitter social-link" href="https://twitter.com/Shel_i_am" title="Twitter" target="_blank">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
<path d="M16,3.536c-0.589,0.261-1.221,0.438-1.885,0.517c0.678-0.406,1.198-1.05,1.443-1.816c-0.634,0.376-1.337,0.649-2.085,0.797
c-0.599-0.638-1.452-1.037-2.396-1.037c-1.813,0-3.283,1.47-3.283,3.282c0,0.257,0.029,0.508,0.085,0.748
c-2.728-0.137-5.147-1.444-6.766-3.43c-0.283,0.485-0.444,1.049-0.444,1.65c0,1.139,0.579,2.144,1.46,2.732
C1.592,6.963,1.086,6.816,0.643,6.57c0,0.014,0,0.027,0,0.041c0,1.59,1.132,2.917,2.633,3.219C3,9.905,2.71,9.945,2.411,9.945
c-0.212,0-0.417-0.021-0.618-0.059c0.418,1.304,1.63,2.253,3.066,2.28c-1.123,0.88-2.539,1.405-4.077,1.405
c-0.265,0-0.526-0.016-0.783-0.046C1.453,14.456,3.178,15,5.032,15c6.038,0,9.34-5.002,9.34-9.34c0-0.142-0.003-0.284-0.01-0.425
C15.003,4.773,15.56,4.195,16,3.536z"/>
</svg>
</a>
</li>
<li>
<a class="linkedin social-link" href="https://www.linkedin.com/in/webdevcoder" title="Linked In" target="_blank">
<svg version="1.1" id="Ebene_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve">
<g>
<g>
<path d="M14.815,0H1.181C0.529,0,0,0.517,0,1.153v13.693C0,15.483,0.529,16,1.181,16h13.634C15.467,16,16,15.483,16,14.845V1.153
C16,0.517,15.467,0,14.815,0z M4.745,13.634H2.371V5.999h2.374V13.634z M3.558,4.955c-0.761,0-1.376-0.617-1.376-1.376
c0-0.759,0.615-1.376,1.376-1.376c0.759,0,1.375,0.617,1.375,1.376C4.934,4.338,4.317,4.955,3.558,4.955z M13.633,13.634h-2.37
V9.921c0-0.886-0.017-2.025-1.234-2.025c-1.235,0-1.423,0.965-1.423,1.961v3.777H6.234V5.999H8.51v1.043h0.032
c0.317-0.6,1.091-1.233,2.246-1.233c2.401,0,2.845,1.581,2.845,3.638V13.634z"></path>
</g>
</g>
</svg>
</a>
</li>
</ul>
</div>
</div>
</div>
<div id="wrapper">
<div id="content">
<!-- content fade -->
<div class="fade-content">
<div id="content-holder" class=""><div id="content_5nsr3z56q" class="multi-column" data-sort="1">
<div class="mc-content-container" style="padding-top: 160px;padding-bottom: 160px;background-color: #141618;" data-content-id="content_5nsr3z56q" data-content-type="multi-column"><div id="masonry-content_5nsr3z56q" class="container" style="position: relative; height: 578px; background-color: transparent;"><div class="row"><div class="grid-sizer"></div><div class="gutter-sizer"></div><div class="span4 masonry-item remove-gutter-" style="position: absolute; left: 0px; top: 0px;"><div class="mc-sub-content-container" style="padding-top: 20px;background-color: transparent;" data-content-id="content_5nsr3z56q" data-content-type="multi-column">
<div class="single-edit" style="display: none;">
<ul>
<li><a class="edit-single" data-single-edit-content-id="column_content_r2lcanflz" data-single-edit-column-id="#column_9zlpdn22h" data-single-edit-content-type="column-content-p">Single Edit</a></li>
<li><a class="edit-column">Column Edit</a></li>
</ul>
</div>
<div data-content-id="content_5nsr3z56q" data-paragraph-id="content_5nsr3z56q" data-content-type="multi-column" class="wysiwyg-ce "><h1 data-font-size="16px"><span style="color:#FFFFFF;"><span class="regular">Matthieu Bousendorfer<br><span class="bold">French Art Director & Webdesigner</span></span></span></h1></div></div><div class="mc-sub-content-container" style="padding-top: 10px;padding-bottom: 80px;background-color: transparent;" data-content-id="content_5nsr3z56q" data-content-type="multi-column" data-modules-array="button">
<div class="single-edit" style="display: none;">
<ul>
<li><a class="edit-single" data-single-edit-content-id="column_content_zq5zti29y" data-single-edit-column-id="#column_9zlpdn22h" data-single-edit-content-type="custom-module">Single Edit</a></li>
<li><a class="edit-column">Column Edit</a></li>
</ul>
</div>
<div class="is-shortcode"><div class="executed"><script type="text/javascript">(function($){$(document).ready(function(){$("head").append('<style type="text/css">#content_5nsr3z56q #button_column_content_zq5zti29y:hover {background-color:#141618 !important;color:#ffffff !important;border-color:#141618 !important;letter-spacing:3px !important;}</style>');});})(jQuery);</script><div class="button-wrapper" style="width: 100%; text-align: left;"><a id="button_column_content_zq5zti29y" href="http://edenpulse.com/about-me/" target="_self" data-font-size="14px" class="ce-button bold" style="width: auto !important;color:#cfaf8f;letter-spacing:3px;background-color:#141618;padding:0px !important;border-width:0px !important;border-color:#141618;border-radius:0px !important;-moz-border-radius:0px !important;-webkit-border-radius:0px !important;">ABOUT ME</a></div></div><div class="unexecuted">[unex_ce_button id="content_5nsr3z56q,column_content_zq5zti29y" button_text_color="#cfaf8f" button_font="bold" button_font_size="14px" button_width="auto" button_alignment="left" button_text_spacing="3px" button_bg_color="#141618" button_padding="0px" button_border_width="0px" button_border_color="#141618" button_border_radius="0px" button_text_hover_color="#ffffff" button_text_spacing_hover="3px" button_bg_hover_color="#141618" button_border_hover_color="#141618" button_link="http://edenpulse.com/about-me/" button_link_type="url" button_link_target="_self" has_container="" in_column="1"]ABOUT ME[/ce_button]</div></div></div></div><div class="span8 masonry-item remove-gutter-" style="position: absolute; left: 400px; top: 0px;"><div class="mc-sub-content-container" style="background-color: transparent;" data-content-id="content_5nsr3z56q" data-content-type="multi-column">
<div class="single-edit" style="display: none;">
<ul>
<li><a class="edit-single" data-single-edit-content-id="column_content_fetdqtt7c" data-single-edit-column-id="#column_5trqn5lfa" data-single-edit-content-type="column-content-p">Single Edit</a></li>
<li><a class="edit-column">Column Edit</a></li>
</ul>
</div>
<div data-content-id="content_5nsr3z56q" data-paragraph-id="content_5nsr3z56q" data-content-type="multi-column" class="wysiwyg-ce "><p data-font-size="24px"><span style="color:#655e58;"><span class="bold">My motto</span></span></p></div></div><div class="mc-sub-content-container" style="background-color: transparent;" data-content-id="content_5nsr3z56q" data-content-type="multi-column">
<div class="single-edit" style="display: none;">
<ul>
<li><a class="edit-single" data-single-edit-content-id="column_content_f86ktlb9w" data-single-edit-column-id="#column_5trqn5lfa" data-single-edit-content-type="column-content-p">Single Edit</a></li>
<li><a class="edit-column">Column Edit</a></li>
</ul>
</div>
<div data-content-id="content_5nsr3z56q" data-paragraph-id="content_5nsr3z56q" data-content-type="multi-column" class="wysiwyg-ce "><h2 data-font-size="120px" data-line-height="132px"><span style="color:#CFAF8F;"><span class="bold">keep it<br>simple,<br>stupid.</span></span><p></p><p data-line-height="24px" data-font-size="16px"> </p><p data-line-height="24px" data-font-size="16px"><span class="regular"><span style="color:#FFFFFF;">Portfolio 2015</span></span></p></h2></div></div><div class="mc-sub-content-container" style="padding-top: 10px;background-color: transparent;" data-content-id="content_5nsr3z56q" data-content-type="multi-column" data-modules-array="button">
<div class="single-edit" style="display: none;">
<ul>
<li><a class="edit-single" data-single-edit-content-id="column_content_byrfaz1g5" data-single-edit-column-id="#column_5trqn5lfa" data-single-edit-content-type="custom-module">Single Edit</a></li>
<li><a class="edit-column">Column Edit</a></li>
</ul>
</div>
<div class="is-shortcode"><div class="executed"><script type="text/javascript">(function($){$(document).ready(function(){$("head").append('<style type="text/css">#content_5nsr3z56q #button_column_content_byrfaz1g5:hover {background-color:#141618 !important;color:#ffffff !important;border-color:#141618 !important;letter-spacing:3px !important;}</style>');});})(jQuery);</script><div class="button-wrapper" style="width: 100%; text-align: left;"><a id="button_column_content_byrfaz1g5" href="#content_a5hl7q3lw" target="_self" data-font-size="14px" class="ce-button bold" style="width: auto !important;color:#cfaf8f;letter-spacing:3px;background-color:#141618;padding:0px !important;border-width:0px !important;border-color:#141618;border-radius:0px !important;-moz-border-radius:0px !important;-webkit-border-radius:0px !important;">SELECTED PROJECTS</a></div></div><div class="unexecuted">[unex_ce_button id="content_5nsr3z56q,column_content_byrfaz1g5" button_text_color="#cfaf8f" button_font="bold" button_font_size="14px" button_width="auto" button_alignment="left" button_text_spacing="3px" button_bg_color="#141618" button_padding="0px" button_border_width="0px" button_border_color="#141618" button_border_radius="0px" button_text_hover_color="#ffffff" button_text_spacing_hover="3px" button_bg_hover_color="#141618" button_border_hover_color="#141618" button_link="#content_a5hl7q3lw" button_link_type="url" button_link_target="_self" has_container="" in_column="1"]SELECTED PROJECTS[/ce_button]</div></div></div></div></div></div>
<script type="text/javascript">
(function ($) {
$(document).ready(function () {
/* init masonry */
var $grid = $("#masonry-content_5nsr3z56q");
$grid.masonry({
itemSelector: ".masonry-item",
columnWidth: ".grid-sizer",
gutter: ".gutter-sizer",
transitionDuration: 0,
isResizable: true,
});
/* layout Masonry after each image loads */
$grid.imagesLoaded().progress(function() {
$grid.masonry("layout");
});
});
})(jQuery);
</script>
</div>
</div>
<div id="content_joqsmicvi" class="multi-column" data-sort="1">
<div class="mc-content-container" style="padding-top: 80px;padding-bottom: 80px;background-color: #ffffff;" data-content-id="content_joqsmicvi"
data-content-type="multi-column">
<div id="masonry-content_joqsmicvi" class="container" style="position: relative; height: 136px; background-color: transparent;">
<div class="row">
<div class="grid-sizer"></div>
<div class="gutter-sizer"></div>
<div class="span4 masonry-item remove-gutter-" style="position: absolute; left: 0px; top: 0px;">
<div class="mc-sub-content-container" style="padding-bottom: 40px;background-color: transparent;" data-content-id="content_joqsmicvi"
data-content-type="multi-column">
<div data-content-id="content_joqsmicvi" data-paragraph-id="content_joqsmicvi" data-content-type="multi-column" class="wysiwyg-ce ">
<h3>In short</h3>
</div>
</div>
</div>
<div class="span8 masonry-item remove-gutter-" style="position: absolute; left: 400px; top: 0px;">
<div class="mc-sub-content-container" style="background-color: transparent;" data-content-id="content_joqsmicvi" data-content-type="multi-column">
<div data-content-id="content_joqsmicvi" data-paragraph-id="content_joqsmicvi" data-content-type="multi-column" class="wysiwyg-ce ">
<p>Hello, I’m Michelle Gilbank, a web developer and Microsoft partner, currently freelancing. I focus on keeping design
simple and data accurate.</p>
</div>
</div>
<div class="mc-sub-content-container" style="padding-top: 40px;background-color: transparent;" data-content-id="content_joqsmicvi"
data-content-type="multi-column" data-modules-array="button">
<div class="is-shortcode">
<div class="executed"><script type="text/javascript">(function($){$(document).ready(function(){$("head").append('<style type="text/css">#content_joqsmicvi #button_column_content_w0k3ry1n2:hover {background-color:#ffffff !important;color:#655e58 !important;border-color:#ffffff !important;letter-spacing:3px !important;}</style>');});})(jQuery);</script>
<div
class="button-wrapper" style="width: 100%; text-align: left;"><a id="button_column_content_w0k3ry1n2" href="http://www.gilbank.net/about-me/" target="_self" data-font-size="14px"
class="ce-button bold" style="width: auto !important;color:#cfaf8f;letter-spacing:3px;background-color:#ffffff;border-width:0px !important;border-color:#ffffff;">MORE ABOUT ME</a></div>
</div>
<div class="unexecuted">[unex_ce_button id="content_joqsmicvi,column_content_w0k3ry1n2" button_text_color="#cfaf8f" button_font="bold" button_font_size="14px"
button_width="auto" button_alignment="left" button_text_spacing="3px" button_bg_color="#ffffff" button_padding=""
button_border_width="0px" button_border_color="#ffffff" button_border_radius="0" button_text_hover_color="#655e58"
button_text_spacing_hover="3px" button_bg_hover_color="#ffffff" button_border_hover_color="#ffffff" button_link="http://www.gilbank.net/about-me/"
button_link_type="url" button_link_target="_self" has_container="" in_column="1"]MORE ABOUT ME[/ce_button]</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
(function ($) {
$(document).ready(function () {
/* init masonry */
var $grid = $("#masonry-content_joqsmicvi");
$grid.masonry({
itemSelector: ".masonry-item",
columnWidth: ".grid-sizer",
gutter: ".gutter-sizer",
transitionDuration: 0,
isResizable: true,
});
/* layout Masonry after each image loads */
$grid.imagesLoaded().progress(function() {
$grid.masonry("layout");
});
});
})(jQuery);
</script>
</div>
</div>
<div id="content_3f4gw3k77" class="multi-column" data-sort="1" style="">
<div class="mc-content-container" style="padding-top: 40px;padding-bottom: 40px;background-color: #f7f6f2;" data-content-id="content_3f4gw3k77"
data-content-type="multi-column">
<div id="masonry-content_3f4gw3k77" class="container" style="position: relative; height: 40px; background-color: transparent;">
<div class="row">
<div class="grid-sizer"></div>
<div class="gutter-sizer"></div>
<div class="span6 masonry-item remove-gutter-" style="position: absolute; left: 0px; top: 0px;">
<div class="mc-sub-content-container" style="background-color: transparent;" data-content-id="content_3f4gw3k77" data-content-type="multi-column">
<div data-content-id="content_3f4gw3k77" data-paragraph-id="content_3f4gw3k77" data-content-type="multi-column" class="wysiwyg-ce ">
<h3>Selected Projects</h3>
</div>
</div>
</div>
<div class="span6 masonry-item remove-gutter-" style="position: absolute; left: 600px; top: 0px;">
<div class="mc-sub-content-container" style="background-color: transparent;" data-content-id="content_3f4gw3k77" data-content-type="multi-column"
data-modules-array="button">
<div class="is-shortcode">
<div class="executed"><script type="text/javascript">(function($){$(document).ready(function(){$("head").append('<style type="text/css">#content_3f4gw3k77 #button_column_content_85626qlsm:hover {background-color:#000000 !important;color:#ffffff !important;border-color:#000000 !important;letter-spacing:0px !important;}</style>');});})(jQuery);</script>
<div
class="button-wrapper" style="width: 100%; text-align: right;"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
(function ($) {
$(document).ready(function () {
/* init masonry */
var $grid = $("#masonry-content_3f4gw3k77");
$grid.masonry({
itemSelector: ".masonry-item",
columnWidth: ".grid-sizer",
gutter: ".gutter-sizer",
transitionDuration: 0,
isResizable: true,
});
/* layout Masonry after each image loads */
$grid.imagesLoaded().progress(function() {
$grid.masonry("layout");
});
});
})(jQuery);
</script>
</div>
</div>
<div id="content_a5hl7q3lw" class="content-thumbnails" data-sort="1">
<div class="content-container" style="background-image: url(http://www.gilbank.net/img/thumb-coming-soon.png); background-color: rgb(20, 22, 24); display: block; background-position: 100% 100%; background-repeat: no-repeat no-repeat;"
data-content-id="content_a5hl7q3lw" data-content-type="content-thumbnails">
<div class="thumbs-content">
<section id="thumbnails">
<div id="masonry-content_a5hl7q3lw" style="position: relative; height: 2850px;">
<div class="no-gutter-grid-sizer"></div>
<div class="no-gutter-gutter-sizer"></div>
<div style="line-height: 0 !important; font-size: 0px !important; position: absolute; left: 0%; top: 0px; opacity: 1;" class="thumb grid-item masonry-thumbs-item masonry-content_a5hl7q3lw-item masonry-content_a5hl7q3lw-item-0 remove-gutter-yes masonry-span8"
data-thumb-src="http://www.gilbank.net/img/thumb-imagify.jpg">
<a href="http://www.gilbank.net/work/imagify/" title="Imagify">
<div class="thumb-inner">
<div class="thumb-hover" style="background-color: rgb(20, 22, 24) !important; background-color: rgba(20, 22, 24, 0.90) !important;">
<h3 class="bold fs-22px lh-22px" style="text-align: center;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
color: #ffffff !important;">Imagify<br><span class="regular fs-14px lh-14px" style="color: #cfaf8f !important;">service — responsive</span></h3>
</div><img alt="Imagify" src="/img/thumb-imagify.jpg"></div>
</a>
</div>
<div style="line-height: 0 !important; font-size: 0px !important; position: absolute; left: 66.6316%; top: 0px; opacity: 1;"
class="thumb grid-item masonry-thumbs-item masonry-content_a5hl7q3lw-item masonry-content_a5hl7q3lw-item-1 remove-gutter-yes masonry-span4"
data-thumb-src="http://www.gilbank.net/img/thumb-safran-epices-prestige1.jpg">
<a href="http://www.gilbank.net/work/safran-epices-prestige/" title="Safran Epices Prestige">
<div class="thumb-inner">
<div class="thumb-hover" style="background-color: rgb(20, 22, 24) !important; background-color: rgba(20, 22, 24, 0.90) !important;">
<h3 class="bold fs-22px lh-22px" style="text-align: center;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
color: #ffffff !important;">Safran Epices Prestige<br><span class="regular fs-14px lh-14px" style="color: #cfaf8f !important;">ecommerce</span></h3>
</div><img alt="Safran Epices Prestige" src="/img/thumb-safran-epices-prestige1.jpg"></div>
</a>
</div>
<div style="line-height: 0 !important; font-size: 0px !important; position: absolute; left: 66.6316%; top: 475px; opacity: 1;"
class="thumb grid-item masonry-thumbs-item masonry-content_a5hl7q3lw-item masonry-content_a5hl7q3lw-item-2 remove-gutter-yes masonry-span4"
data-thumb-src="http://www.gilbank.net/img/thumb-escale-sensorielle1.jpg">
<a href="http://www.gilbank.net/work/escale-sensorielle/" title="Escale Sensorielle">
<div class="thumb-inner">
<div class="thumb-hover" style="background-color: rgb(20, 22, 24) !important; background-color: rgba(20, 22, 24, 0.90) !important;">
<h3 class="bold fs-22px lh-22px" style="text-align: center;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
color: #ffffff !important;">Escale Sensorielle<br><span class="regular fs-14px lh-14px" style="color: #cfaf8f !important;">ecommerce</span></h3>
</div><img alt="Escale Sensorielle" src="/img/thumb-escale-sensorielle1.jpg"></div>
</a>
</div>
<div style="line-height: 0 !important; font-size: 0px !important; position: absolute; left: 0%; top: 950px; opacity: 1;"
class="thumb grid-item masonry-thumbs-item masonry-content_a5hl7q3lw-item masonry-content_a5hl7q3lw-item-3 remove-gutter-yes masonry-span4"
data-thumb-src="http://www.gilbank.net/img/thumb-grande-place1.jpg">
<a href="http://www.gilbank.net/work/grande-place/" title="Grande Place">
<div class="thumb-inner">
<div class="thumb-hover" style="background-color: rgb(20, 22, 24) !important; background-color: rgba(20, 22, 24, 0.90) !important;">
<h3 class="bold fs-22px lh-22px" style="text-align: center;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
color: #ffffff !important;">Grande Place<br><span class="regular fs-14px lh-14px" style="color: #cfaf8f !important;">webdesign — responsive</span></h3>
</div><img alt="Grande Place" src="/img/thumb-grande-place1.jpg"></div>
</a>
</div>
<div style="line-height: 0 !important; font-size: 0px !important; position: absolute; left: 33.3158%; top: 950px; opacity: 1;"
class="thumb grid-item masonry-thumbs-item masonry-content_a5hl7q3lw-item masonry-content_a5hl7q3lw-item-4 remove-gutter-yes masonry-span8"
data-thumb-src="http://www.gilbank.net/img/thumb-atelier-de-curiosite2.jpg">
<a href="http://www.gilbank.net/work/atelier-de-curiosite/" title="Atelier de curiosité">
<div class="thumb-inner">
<div class="thumb-hover" style="background-color: rgb(20, 22, 24) !important; background-color: rgba(20, 22, 24, 0.90) !important;">
<h3 class="bold fs-22px lh-22px" style="text-align: center;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
color: #ffffff !important;">Atelier de curiosité<br><span class="regular fs-14px lh-14px" style="color: #cfaf8f !important;">blog — responsive</span></h3>
</div><img alt="Atelier de curiosité" src="/img/thumb-atelier-de-curiosite2.jpg"></div>
</a>
</div>
<div style="line-height: 0 !important; font-size: 0px !important; position: absolute; left: 0%; top: 1425px; opacity: 1;"
class="thumb grid-item masonry-thumbs-item masonry-content_a5hl7q3lw-item masonry-content_a5hl7q3lw-item-5 remove-gutter-yes masonry-span4"
data-thumb-src="http://www.gilbank.net/img/thumb-hanna-edge1.jpg">
<a href="http://www.gilbank.net/work/hanna-edge/" title="Hanna Edge">
<div class="thumb-inner">
<div class="thumb-hover" style="background-color: rgb(20, 22, 24) !important; background-color: rgba(20, 22, 24, 0.90) !important;">
<h3 class="bold fs-22px lh-22px" style="text-align: center;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
color: #ffffff !important;">Hanna Edge<br><span class="regular fs-14px lh-14px" style="color: #cfaf8f !important;">webdesign — responsive</span></h3>
</div><img alt="Hanna Edge" src="/img/thumb-hanna-edge1.jpg"></div>
</a>
</div>
<div style="line-height: 0 !important; font-size: 0px !important; position: absolute; left: 0%; top: 1900px; opacity: 1;"
class="thumb grid-item masonry-thumbs-item masonry-content_a5hl7q3lw-item masonry-content_a5hl7q3lw-item-6 remove-gutter-yes masonry-span8"
data-thumb-src="http://www.gilbank.net/img/thumb-thalasseo1.jpg">
<a href="http://www.gilbank.net/work/thalasseo/" title="Thalasseo">
<div class="thumb-inner">
<div class="thumb-hover" style="background-color: rgb(20, 22, 24) !important; background-color: rgba(20, 22, 24, 0.90) !important;">
<h3 class="bold fs-22px lh-22px" style="text-align: center;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
color: #ffffff !important;">Thalasseo<br><span class="regular fs-14px lh-14px" style="color: #cfaf8f !important;">webdesign — responsive</span></h3>
</div><img alt="Thalasseo" src="/img/thumb-thalasseo1.jpg"></div>
</a>
</div>
<div style="line-height: 0 !important; font-size: 0px !important; position: absolute; left: 66.6316%; top: 1900px; opacity: 1;"
class="thumb grid-item masonry-thumbs-item masonry-content_a5hl7q3lw-item masonry-content_a5hl7q3lw-item-7 remove-gutter-yes masonry-span4"
data-thumb-src="http://www.gilbank.net/img/thumb-hanna-instruments1.jpg">
<a href="http://www.gilbank.net/work/hanna-instruments/" title="Hanna Instruments">
<div class="thumb-inner">
<div class="thumb-hover" style="background-color: rgb(20, 22, 24) !important; background-color: rgba(20, 22, 24, 0.90) !important;">
<h3 class="bold fs-22px lh-22px" style="text-align: center;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
color: #ffffff !important;">Hanna Instruments<br><span class="regular fs-14px lh-14px" style="color: #cfaf8f !important;">corporate — webdesign</span></h3>
</div><img alt="Hanna Instruments" src="/img/thumb-hanna-instruments1.jpg"></div>
</a>
</div>
<div style="line-height: 0 !important; font-size: 0px !important; position: absolute; left: 66.6316%; top: 2375px; opacity: 1;"
class="thumb grid-item masonry-thumbs-item masonry-content_a5hl7q3lw-item masonry-content_a5hl7q3lw-item-8 remove-gutter-yes masonry-span4"
data-thumb-src="http://www.gilbank.net/img/thumb-domaine-de-darb1.jpg">
<a href="http://www.gilbank.net/work/domaine-de-darb/" title="Domaine de Darb">
<div class="thumb-inner">
<div class="thumb-hover" style="background-color: rgb(20, 22, 24) !important; background-color: rgba(20, 22, 24, 0.90) !important;">
<h3 class="bold fs-22px lh-22px" style="text-align: center;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
color: #ffffff !important;">Domaine de Darb<br><span class="regular fs-14px lh-14px" style="color: #cfaf8f !important;">webdesign — responsive</span></h3>
</div><img alt="Domaine de Darb" src="/img/thumb-domaine-de-darb1.jpg"></div>
</a>
</div>
</div>
<script type="text/javascript">
(function ($) {
$(document).ready(function () {
/* init masonry */
var $grid = $("#masonry-content_a5hl7q3lw");
$grid.masonry({
itemSelector: ".masonry-content_a5hl7q3lw-item",
columnWidth: ".no-gutter-grid-sizer",
gutter: ".no-gutter-gutter-sizer",
transitionDuration: 0,
isResizable: true,
percentPosition: true,
});
var index = 0;
/* layout Masonry after each image loads */
$grid.imagesLoaded().progress(function() {
$(".masonry-content_a5hl7q3lw-item-" + index).css("opacity", 1);
$grid.masonry("layout");
index++;
});
});
})(jQuery);
</script>
</section>
</div>
<div class="container">
<div class="row">
<div class="span12">
<div class="thumbnails-edit">
<div class="is-thumbnails"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="content_flp5b4uqj" class="multi-column" data-sort="1" style="">
<div class="mc-content-container" style="padding-top: 80px;background-color: #ffffff;" data-content-id="content_flp5b4uqj"
data-content-type="multi-column">
<div id="masonry-content_flp5b4uqj" class="container" style="position: relative; height: 234px; background-color: transparent;">
<div class="row">
<div class="grid-sizer"></div>
<div class="gutter-sizer"></div>
<div class="span4 masonry-item remove-gutter-" style="position: absolute; left: 0px; top: 0px;">
<div class="mc-sub-content-container" style="background-color: transparent;" data-content-id="content_flp5b4uqj" data-content-type="multi-column">
<div data-content-id="content_flp5b4uqj" data-paragraph-id="content_flp5b4uqj" data-content-type="multi-column" class="wysiwyg-ce ">
<h3>Contact me</h3>
</div>
</div>
</div>
<div class="span6 masonry-item remove-gutter-" style="position: absolute; left: 400px; top: 0px;">
<div class="mc-sub-content-container" style="background-color: transparent;" data-content-id="content_flp5b4uqj" data-content-type="multi-column">
<div data-content-id="content_flp5b4uqj" data-paragraph-id="content_flp5b4uqj" data-content-type="multi-column" class="wysiwyg-ce ">
<p data-font-size="16px"><span class="regular">If you’d like to talk about a project, ask me some questions, or just want to say hi, don't hesitate and get in touch !</span></p>
</div>
</div>
<div class="mc-sub-content-container" style="padding-top: 40px;padding-bottom: 80px;background-color: transparent;" data-content-id="content_flp5b4uqj"
data-content-type="multi-column" data-modules-array="button">
<div class="is-shortcode">
<div class="executed"><script type="text/javascript">(function($){$(document).ready(function(){$("head").append('<style type="text/css">#content_flp5b4uqj #button_column_content_270d7pzg8:hover {background-color:#ffffff !important;color:#655e58 !important;border-color:#655e58 !important;letter-spacing:3px !important;}</style>');});})(jQuery);</script>
<div class="button-wrapper" style="width: 100%; text-align: left;"><a id="button_column_content_270d7pzg8" href="mailto:[email protected]" target="_self" data-font-size="14px" class="ce-button bold"
style="width: auto !important;color:#ffffff;letter-spacing:3px;background-color:#141618;padding:15px 60px 15px 60px !important;border-width:2px !important;border-color:#141618;border-radius:0px !important;-moz-border-radius:0px !important;-webkit-border-radius:0px !important;">WRITE AN EMAIL</a></div>
</div>
<div class="unexecuted">[unex_ce_button id="content_flp5b4uqj,column_content_270d7pzg8" button_text_color="#ffffff" button_font="bold" button_font_size="14px"
button_width="auto" button_alignment="left" button_text_spacing="3px" button_bg_color="#141618" button_padding="15px
60px 15px 60px" button_border_width="2px" button_border_color="#141618" button_border_radius="0px" button_text_hover_color="#655e58"
button_text_spacing_hover="3px" button_bg_hover_color="#ffffff" button_border_hover_color="#655e58" button_link="[email protected]"
button_link_type="email" button_link_target="_self" has_container="" in_column="1"]WRITE AN EMAIL[/ce_button]</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
(function ($) {
$(document).ready(function () {
/* init masonry */
var $grid = $("#masonry-content_flp5b4uqj");
$grid.masonry({
itemSelector: ".masonry-item",
columnWidth: ".grid-sizer",
gutter: ".gutter-sizer",
transitionDuration: 0,
isResizable: true,
});
/* layout Masonry after each image loads */
$grid.imagesLoaded().progress(function() {
$grid.masonry("layout");
});
});
})(jQuery);
</script>
</div>
</div>
<div id="content_9dpy0gsac" class="multi-column" data-sort="1">
<div class="mc-content-container" style="padding-top: 40px;padding-bottom: 40px;background-color: #ffffff;" data-content-id="content_9dpy0gsac"
data-content-type="multi-column">
<div id="masonry-content_9dpy0gsac" class="container" style="position: relative; height: 128px; background-color: transparent;">
<div class="row">
<div class="grid-sizer"></div>
<div class="gutter-sizer"></div>
<div class="span3 masonry-item remove-gutter-" style="position: absolute; left: 0px; top: 0px; background-color: transparent;">
<div class="mc-sub-content-container" style="padding-top: 40px;padding-bottom: 40px;background-color: transparent;" data-content-id="content_9dpy0gsac"
data-content-type="multi-column">
<div data-content-id="content_9dpy0gsac" data-paragraph-id="content_9dpy0gsac" data-content-type="multi-column" class="wysiwyg-ce ">
<p data-font-size="16px" data-line-height="24px"><span class="regular">© 2016<br>Michelle R Gilbank</span></p>
</div>
</div>
</div>
<div class="span4 masonry-item remove-gutter-" style="position: absolute; left: 300px; top: 0px; background-color: transparent;">
<div class="mc-sub-content-container" style="padding-top: 40px;padding-bottom: 40px;background-color: transparent;"
data-content-id="content_9dpy0gsac" data-content-type="multi-column">
<div data-content-id="content_9dpy0gsac" data-paragraph-id="content_9dpy0gsac" data-content-type="multi-column" class="wysiwyg-ce ">
<p data-font-size="16px" data-line-height="24px"><span class="regular"><span class="bold">Follow me on</span><br><a href="http://twitter.com/Shel_i_am">twitter</a> - <a href="http://linkedin.com/in/webdevcoder">linkedin</a></span>
</p>
</div>
</div>
</div>
<div class="span3 masonry-item remove-gutter-" style="position: absolute; left: 700px; top: 0px; background-color: transparent;">
<div class="mc-sub-content-container" style="padding-top: 40px;padding-bottom: 40px;background-color: transparent;"
data-content-id="content_9dpy0gsac" data-content-type="multi-column">
<div data-content-id="content_9dpy0gsac" data-paragraph-id="content_9dpy0gsac" data-content-type="multi-column" class="wysiwyg-ce ">
<p data-line-height="24px" data-font-size="16px"><span class="bold">Get in touch</span><br><a href="mailto:[email protected]?subject=Hi!">[email protected]</a></p>
</div>
</div>
</div>
<div class="span2 masonry-item remove-gutter-" style="position: absolute; left: 1000px; top: 0px; background-color: transparent;">
<div class="mc-sub-content-container" style="padding-top: 20px;background-color: transparent;" data-content-id="content_9dpy0gsac"
data-content-type="multi-column" data-modules-array="code">
<div class="code-edit">
<div class="is-code"></div>
</div>
<div class="code-content">
<div class="ce-code">
<a href="http://soularitylabs.com/"><img style="width:80px;display:block;margin:auto;" src="/img/soularity.svg"></a>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
(function ($) {
$(document).ready(function () {
/* init masonry */
var $grid = $("#masonry-content_9dpy0gsac");
$grid.masonry({
itemSelector: ".masonry-item",
columnWidth: ".grid-sizer",
gutter: ".gutter-sizer",
transitionDuration: 0,
isResizable: true,
});
/* layout Masonry after each image loads */
$grid.imagesLoaded().progress(function() {
$grid.masonry("layout");
});
});
})(jQuery);
</script>
</div>
</div>
</div>
</div>
<!-- content -->
</div>
<!-- wrapper -->
</div>
<div class="to-the-top" style="display: none;">
<a class="top-button">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="53px" height="20px" viewBox="0 0 53 20" enable-background="new 0 0 53 20" xml:space="preserve">
<g id="Ebene_3">
</g>
<g>
<polygon points="43.886,16.221 42.697,17.687 26.5,4.731 10.303,17.688 9.114,16.221 26.5,2.312 "></polygon>
</g>
</svg>
</a>
</div>
<div class="overlay fade"></div>
<script type="text/javascript" src="/js/devicepx-jetpack.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
var _wpmejsSettings = {"pluginPath":"\/wp-includes\/js\/mediaelement\/"};
/* ]]> */
</script>
<script type="text/javascript" src="/js/mediaelement-and-player.min.js"></script>
<script type="text/javascript" src="/js/wp-mediaelement.min.js"></script>
<script type="text/javascript">
/* <![CDATA[ */
var soularity = {"gallery_prev":"<svg version=\"1.1\" id=\"Ebene_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\r\n\twidth=\"18px\" height=\"40px\" viewBox=\"0 0 18 40\" enable-background=\"new 0 0 18 40\" xml:space=\"preserve\">\r\n<g id=\"Ebene_2\">\r\n\t<g>\r\n\t\t<polygon points=\"16.3,40 0.3,20 16.3,0 17.7,1 2.5,20 17.7,39 \t\t\"\/>\r\n\t<\/g>\r\n<\/g>\r\n<\/svg>\r\n","gallery_next":"<svg version=\"1.1\" id=\"Ebene_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\r\n\twidth=\"18px\" height=\"40px\" viewBox=\"0 0 18 40\" enable-background=\"new 0 0 18 40\" xml:space=\"preserve\">\r\n<g id=\"Ebene_2\">\r\n\t<g>\r\n\t\t<polygon points=\"0.3,39 15.5,20 0.3,1 1.7,0 17.7,20 1.7,40 \t\t\"\/>\r\n\t<\/g>\r\n<\/g>\r\n<\/svg>\r\n","lightbox_prev":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" preserveAspectRatio=\"xMidYMid\" width=\"30\" height=\"20\" viewBox=\"0 0 30 20\">\n <path d=\"M29.255,10.804 L2.624,10.804 L10.327,18.696 C10.619,18.995 10.619,19.481 10.327,19.780 C10.181,19.930 9.989,20.005 9.798,20.005 C9.607,20.005 9.415,19.930 9.269,19.780 L0.290,10.580 C0.220,10.509 0.165,10.424 0.127,10.330 C0.090,10.238 0.071,10.141 0.071,10.043 C0.071,10.041 0.070,10.039 0.070,10.037 C0.070,10.035 0.071,10.034 0.071,10.032 C0.071,9.934 0.090,9.836 0.127,9.745 C0.165,9.650 0.220,9.565 0.290,9.494 L9.269,0.294 C9.561,-0.005 10.035,-0.005 10.327,0.294 C10.619,0.594 10.619,1.079 10.327,1.378 L2.624,9.270 L29.255,9.270 C29.669,9.270 30.003,9.613 30.003,10.037 C30.003,10.461 29.669,10.804 29.255,10.804 Z\"\/>\n<\/svg>\n","lightbox_next":"<svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" preserveAspectRatio=\"xMidYMid\" width=\"30\" height=\"20\" viewBox=\"0 0 30 20\">\n <path d=\"M29.873,9.745 C29.910,9.836 29.929,9.934 29.929,10.032 C29.929,10.034 29.930,10.035 29.930,10.037 C29.930,10.039 29.929,10.041 29.929,10.043 C29.929,10.141 29.910,10.238 29.873,10.330 C29.835,10.424 29.780,10.509 29.710,10.580 L20.731,19.780 C20.585,19.930 20.393,20.005 20.202,20.005 C20.011,20.005 19.819,19.930 19.673,19.780 C19.381,19.481 19.381,18.995 19.673,18.696 L27.376,10.804 L0.745,10.804 C0.331,10.804 -0.003,10.461 -0.003,10.037 C-0.003,9.613 0.331,9.270 0.745,9.270 L27.376,9.270 L19.673,1.378 C19.381,1.079 19.381,0.594 19.673,0.294 C19.965,-0.005 20.439,-0.005 20.731,0.294 L29.710,9.494 C29.780,9.565 29.835,9.650 29.873,9.745 Z\"\/>\n<\/svg>\n"};
/* ]]> */
</script>
<script type="text/javascript" src="/js/scripts.min.js"></script>
<script type="text/javascript" src="/js/wp-embed.min.js"></script>
<script type="text/javascript">
(function($) {
// back button fix (firefox) thx to Jesse from stack overfllow
$(window).unload(function () { $(window).unbind('unload'); });
// back button fix (safari)
$(window).bind('pageshow', function(event) {
if (event.originalEvent.persisted) {
window.location.reload()