This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.htm
executable file
·854 lines (783 loc) · 46.7 KB
/
index.htm
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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<!--
Copyright © 2011, PINT, Inc.
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
-->
<title>HTML5 ADVENTURE CALENDAR</title>
<meta name="keywords" content="HTML5 Advent"/>
<meta name="description" content="HTML5 Advent"/>
<meta name="author" content="ZingChart [ www.zingchart.com ] | PINT [ www.pint.com ]"/>
<link rel="stylesheet" href="assets/css/common.css" type="text/css" media="screen"/>
</head>
<body>
<div id="container">
<header role="banner">
<div id="header">
<hgroup>
<h1 class="headline">
<span id="headline-first">
<span class="color1">HTML5</span>
<span class="color2">ADVENT</span>
</span>
<span class="color3">URE</span>
<span>
<span class="color4">CALENDAR</span>
<span>2011</span>
</span>
</h1>
<h2 class="headline">Your Tagline Here</h2>
</hgroup>
<p class="disclaimer">( HTML5 Advent calendar was designed and developed by ZingChart. This code may be distributed, altered and re-used for new projects per the license but we would prefer attribution and a backlink to <a href="http://www.zingchart.com/" target="_blank">http://zingchart.com</a> be displayed in the page footer. )</p>
<p>( Click 'day' below to jump to 'day' content )</p>
</div><!--// ENDS: #HEADER -->
</header>
<nav role="navigation">
<div id="calendar">
<ul class="component-calendar">
<li class="indent-3 active color1">
<a href="#day01">
<span class="day"><strong>01</strong><span> </span></span>
<span class="content">
<small>01</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 1</strong>
</span>
</a>
</li>
<li class="active color2">
<a href="#day02">
<span class="day"><strong>02</strong><span> </span></span>
<span class="content">
<small>02</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 2</strong>
</span>
</a>
</li>
<li class="color3">
<a href="#day03">
<span class="day"><strong>03</strong><span> </span></span>
<span class="content">
<small>03</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 3</strong>
</span>
</a>
</li>
<li class="active color4">
<a href="#day04">
<span class="day"><strong>04</strong><span> </span></span>
<span class="content">
<small>04</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 4</strong>
</span>
</a>
</li>
<li class="active color1">
<a href="#day05">
<span class="day"><strong>05</strong><span> </span></span>
<span class="content">
<small>05</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 5</strong>
</span>
</a>
</li>
<li class="active color2">
<a href="#day06">
<span class="day"><strong>06</strong><span> </span></span>
<span class="content">
<small>06</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 6</strong>
</span>
</a>
</li>
<li class="active color3">
<a href="#day07">
<span class="day"><strong>07</strong><span> </span></span>
<span class="content">
<small>07</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 7</strong>
</span>
</a>
</li>
<li class="active color4">
<a href="#day08">
<span class="day"><strong>08</strong><span> </span></span>
<span class="content">
<small>08</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 8</strong>
</span>
</a>
</li>
<li class="active color1">
<a href="#day09">
<span class="day"><strong>09</strong><span> </span></span>
<span class="content">
<small>09</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 9</strong>
</span>
</a>
</li>
<li class="active color2">
<a href="#day10">
<span class="day"><strong>10</strong><span> </span></span>
<span class="content">
<small>10</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 10</strong>
</span>
</a>
</li>
<li class="active color3">
<a href="#day11">
<span class="day"><strong>11</strong><span> </span></span>
<span class="content">
<small>11</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 11</strong>
</span>
</a>
</li>
<li class="active color4">
<a href="#day12">
<span class="day"><strong>12</strong><span> </span></span>
<span class="content">
<small>12</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 12</strong>
</span>
</a>
</li>
<li class="active color1">
<a href="#day13">
<span class="day"><strong>13</strong><span> </span></span>
<span class="content">
<small>13</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 13</strong>
</span>
</a>
</li>
<li class="active color2">
<a href="#day14">
<span class="day"><strong>14</strong><span> </span></span>
<span class="content">
<small>14</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 14</strong>
</span>
</a>
</li>
<li class="active color3">
<a href="#day15">
<span class="day"><strong>15</strong><span> </span></span>
<span class="content">
<small>15</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 15</strong>
</span>
</a>
</li>
<li class="active color4">
<a href="#day16">
<span class="day"><strong>16</strong><span> </span></span>
<span class="content">
<small>16</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 16</strong>
</span>
</a>
</li>
<li class="active color1">
<a href="#day17">
<span class="day"><strong>17</strong><span> </span></span>
<span class="content">
<small>17</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 17</strong>
</span>
</a>
</li>
<li class="active color2">
<a href="#day18">
<span class="day"><strong>18</strong><span> </span></span>
<span class="content">
<small>18</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 18</strong>
</span>
</a>
</li>
<li class="active color3">
<a href="#day19">
<span class="day"><strong>19</strong><span> </span></span>
<span class="content">
<small>19</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 19</strong>
</span>
</a>
</li>
<li class="active color4">
<a href="#day20">
<span class="day"><strong>20</strong><span> </span></span>
<span class="content">
<small>20</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 20</strong>
</span>
</a>
</li>
<li class="active color1">
<a href="#day21">
<span class="day"><strong>21</strong><span> </span></span>
<span class="content">
<small>21</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 21</strong>
</span>
</a>
</li>
<li class="active color2">
<a href="#day22">
<span class="day"><strong>22</strong><span> </span></span>
<span class="content">
<small>22</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 22</strong>
</span>
</a>
</li>
<li class="active color3">
<a href="#day23">
<span class="day"><strong>23</strong><span> </span></span>
<span class="content">
<small>23</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 23</strong>
</span>
</a>
</li>
<li class="active color4">
<a href="#day24">
<span class="day"><strong>24</strong><span> </span></span>
<span class="content">
<small>24</small>
<img src="assets/images/temp1.jpg" width="126" height="91" alt=""/>
<strong>Day 24</strong>
</span>
</a>
</li>
</ul>
</div><!--// ENDS: #CALENDAR -->
</nav>
<article role="main">
<div id="daydetail">
<ul id="daydetail-list">
<li>
<section>
<h1>Day 1</h1>
<div id="day01" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 1st</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 2</h1>
<div id="day02" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 2nd</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 3</h1>
<div id="day03" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 3rd</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 4</h1>
<div id="day04" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 4th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 5</h1>
<div id="day05" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 5th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 6</h1>
<div id="day06" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 6th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 7</h1>
<div id="day07" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 7th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 8</h1>
<div id="day08" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 8th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 9</h1>
<div id="day09" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 9th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 10</h1>
<div id="day10" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 10th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 11</h1>
<div id="day11" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 11th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 12</h1>
<div id="day12" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 12th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 13</h1>
<div id="day13" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 13th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 14</h1>
<div id="day14" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 14th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 15</h1>
<div id="day15" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 15th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 16</h1>
<div id="day16" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 16th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 17</h1>
<div id="day17" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 17th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 18</h1>
<div id="day18" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 18th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 19</h1>
<div id="day19" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 19th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 20</h1>
<div id="day20" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 20th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 21</h1>
<div id="day21" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 21st</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 22</h1>
<div id="day22" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 22nd</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 23</h1>
<div id="day23" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 23rd</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
<li>
<section>
<h1>Day 24</h1>
<div id="day24" class="daydetail-content">
<div class="right">
<hgroup>
<h2>December 24th</h2>
<h3>Feature Title</h3>
</hgroup>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus malesuada, libero at lacinia ornare, tellus tellus fermentum est, ac iaculis libero leo eget diam.</p>
</div>
<div class="left">
<a href="#" target="_blank"><img src="assets/images/temp2.jpg" width="356" height="430" alt=""/></a>
</div>
</div>
</section>
<p class="top"><a href="#container">Back to Top</a></p>
</li>
</ul>
</div><!--// ENDS: #DAYDETAIL -->
</article>
<footer role="contentinfo">
<div id="footer">
<div id="zingchart">
<ul>
<li><span>Brought to you by</span> <a id="zingchart-logo" href="http://www.zingchart.com" target="_blank" title="Click here for more information on ZingChart"><img src="assets/images/logo-zingchart.png" width="88" height="31" alt="Click here for more information on ZingChart" /></a></li>
</ul>
</div>
<div id="zingchart-box" class="component-box arrow-right"><div class="inner">
<div class="text">
<p><img src="assets/images/logo-zingchart.png" width="88" height="31" alt="ZingChart" /></p>
<p>Build HTML5 & Flash charts and graphs with the latest & greatest features and technologies.</p>
<p><a href="http://www.zingchart.com/html5_rocks" target="_blank">zingchart.com/html5_rocks</a></p>
</div>
</div></div>
<div class="disclaimer">
<p>This site is best viewed in <a href="http://www.apple.com/safari/download/" target="_blank" title="Click here to visit the Apple Safari download page [External]">Safari</a>, <a href="http://www.google.com/chrome" target="_blank" title="Click here to visit the Google Chrome download page [External]">Chrome</a>, <a href="http://www.opera.com/download/" target="_blank" title="Click here to visit the Opera download page [External]">Opera</a>, <a href="http://windows.microsoft.com/ie9" target="_blank" title="Click here to visit the IE9 Beta download page [External]">IE9 Beta</a> or <a href="http://www.mozilla.com/en-US/firefox/personal.html" target="_blank" title="Click here to visit the Firefox download page [External]">Firefox</a></p>
</div>
</div><!--// ENDS FOOTER -->
</footer>
</div><!--// ENDS #CONTAINER -->
<script src="assets/scripts/jquery-min.js"></script>
<script src="assets/scripts/jquery.cookie.js"></script>
<script src="assets/scripts/common.js"></script>
</body>
</html>