-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
825 lines (768 loc) · 33.5 KB
/
Copy pathindex.html
File metadata and controls
825 lines (768 loc) · 33.5 KB
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
<!DOCTYPE html>
<html>
<head>
<!-- title and meta -->
<meta charset="utf-8">
<meta content="width=device-width,initial-scale=1.0" name="viewport">
<meta property="og:url" content="http://webdesigndecal.github.io/showcase">
<meta property="og:title" content="WDD Student Project Showcase">
<meta property="og:description" content="Exemplary student projects from previous semesters of the Web Design Decal.">
<meta property="og:image" content="http://webdesigndecal.github.io/showcase/img/showcase-preview.jpg">
<title>WDD Gallery</title>
<!-- css -->
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Lato:400,300' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="img/WDD logo black.jpg">
</head>
<body>
<div class="wrapper">
<header>
<div id="logo">
<img src="img/WDD gallery.png">
</div>
<div id="subheader">Learn to build a beautiful website from the ground up. Here are some exemplary samples of student work from WDD.</div>
</header>
<main>
<div class="container">
<!--a target="_blank" href="https://wdd.io/go/apply" class="button enabled">Apply for Fall 2021</!--a-->
<div class="semester">Fall 2022</div>
<div class="item">
<a target="_blank" >
<img src="img/websites/fa22/sarah-suen.png">
</a>
<div class="description">
<div class="title">Personal Portfolio</div>
<div class="by">By: Sarah Suen </div>
<div class="view-site">
<!--a target="_blank" href="https://sarahsuen.github.io/final/index.html">View Site</a-->
</div>
</div>
</div>
<div class="item">
<a target="_blank" >
<img src="img/websites/fa22/Junesoo-Jun.png">
</a>
<div class="description">
<div class="title">Make a Tune</div>
<div class="by">By: Junesoo Jun</div>
<div class="view-site">
<!--a target="_blank" href="https://junhyung0710.github.io/final/index.html">View Site</!a--->
</div>
</div>
</div>
<div class="item">
<a target="_blank" >
<img src="img/websites/fa22/Cassandra-Aquino.png">
</a>
<div class="description">
<div class="title">Top Tracks of the Year</div>
<div class="by">By: Cassandra Aquino</div>
<div class="view-site">
<!--a target="_blank" href="https://cassieaquino.github.io/final/index.html">View Site</!--a-->
</div>
</div>
</div>
<div class="item">
<a target="_blank" >
<img src="img/websites/fa22/Jazzy-Rao.png">
</a>
<div class="description">
<div class="title">Vending Machine</div>
<div class="by">By: Jazzy Rao</div>
<div class="view-site">
<!--a target="_blank" href="https://jazzyrrao.github.io/final/index.htmlo">View Site</!a-->
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<!--a target="_blank" href="https://wdd.io/go/apply" class="button enabled">Apply for Fall 2021</!--a-->
<div class="semester">Spring 2021</div>
<div class="item">
<a target="_blank" href="https://bbbizzarro.github.io/solarsystemtour">
<img src="img/websites/sp21/brandonbizzarro.png">
</a>
<div class="description">
<div class="title">A Tour of the Solar System</div>
<div class="by">By: Brandon Bizzarro</div>
<div class="view-site">
<a target="_blank" href="https://bbbizzarro.github.io/solarsystemtour">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://skjue.github.io">
<img src="img/websites/sp21/stephaniejue.png">
</a>
<div class="description">
<div class="title">Sushi Bar</div>
<div class="by">By: Stephanie Jue</div>
<div class="view-site">
<a target="_blank" href="https://skjue.github.io">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://hugues78.github.io">
<img src="img/websites/sp21/hugueseichinger.png">
</a>
<div class="description">
<div class="title">My Music Discoveries</div>
<div class="by">By: Hugues Eichinger</div>
<div class="view-site">
<a target="_blank" href="https://hugues78.github.io">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://fp456.github.io">
<img src="img/websites/sp21/fernandapisconte.png">
</a>
<div class="description">
<div class="title">Yuh</div>
<div class="by">By: Fernanda Pisconte</div>
<div class="view-site">
<a target="_blank" href="https://fp456.github.io">View Site</a>
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<div class="semester">Fall 2020</div>
<div class="item">
<a target="_blank" href="https://audreyyma.github.io">
<img src="img/websites/fa20/audreyma.png">
</a>
<div class="description">
<div class="title">High Tea</div>
<div class="by">By: Audrey Ma</div>
<div class="view-site">
<a target="_blank" href="https://audreyyma.github.io">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://kyullama.github.io">
<img src="img/websites/fa20/eliannaku.png">
</a>
<div class="description">
<div class="title">New Mission</div>
<div class="by">By: Elianna Ku</div>
<div class="view-site">
<a target="_blank" href="https://kyullama.github.io">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://thechangvin.github.io/index.html">
<img src="img/websites/fa20/kevinchang.png">
</a>
<div class="description">
<div class="title">My Photography Journey</div>
<div class="by">By: Kevin Chang</div>
<div class="view-site">
<a target="_blank" href="https://thechangvin.github.io/index.html">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://vuksavanna.github.io">
<img src="img/websites/fa20/savannavu.png">
</a>
<div class="description">
<div class="title">In Season</div>
<div class="by">By: Savanna Vu</div>
<div class="view-site">
<a target="_blank" href="https://vuksavanna.github.io">View Site</a>
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<!-- <a target="_blank" href="https://wdd.io/go/apply" class="button enabled">Apply for Fall 2020</a> -->
<div class="semester">Spring 2020</div>
<div class="item">
<a target="_blank" href="https://www.coreyhu.com">
<img src="img/websites/sp20/coreyhu.png">
</a>
<div class="description">
<div class="title">Personal Portfolio</div>
<div class="by">By: Corey Hu</div>
<div class="view-site">
<a target="_blank" href="https://www.coreyhu.com">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://ertsai01.github.io/final//">
<img src="img/websites/sp20/erintsai.png">
</a>
<div class="description">
<div class="title">My Quarantine Time Capsule</div>
<div class="by">By: Erin Tsai</div>
<div class="view-site">
<a target="_blank" href="https://ertsai01.github.io/final//">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://quietudes.github.io//">
<img src="img/websites/sp20/reinilin.png">
</a>
<div class="description">
<div class="title">Quiet Room</div>
<div class="by">By: Reini Lin</div>
<div class="view-site">
<a target="_blank" href="https://quietudes.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://jennylmchen.github.io/">
<img src="img/websites/sp20/jennychen.png">
</a>
<div class="description">
<div class="title">Personal Portfolio</div>
<div class="by">By: Jenny Chen</div>
<div class="view-site">
<a target="_blank" href="https://jennylmchen.github.io/">View Site</a>
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<!--<a target="_blank" href="https://wdd.io/go/apply" class="button enabled">Apply for Spring 2020</a>-->
<div class="semester">Fall 2019</div>
<div class="item">
<a target="_blank" href="https://jeaninet.github.io/">
<img src="img/websites/fa19/jeaninetso.png">
</a>
<div class="description">
<div class="title">Omelas</div>
<div class="by">By: Jeanine Tso</div>
<div class="view-site">
<a target="_blank" href="https://jeaninet.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://haolinzhu.github.io/syria/">
<img src="img/websites/fa19/haolinzhu.png">
</a>
<div class="description">
<div class="title">Syrian Civil War</div>
<div class="by">By: Haolin Zhu</div>
<div class="view-site">
<a target="_blank" href="https://haolinzhu.github.io/syria/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://amg2318.github.io/">
<img src="img/websites/fa19/ajiagrant.png">
</a>
<div class="description">
<div class="title">Rocketeer</div>
<div class="by">By: Ajia Grant</div>
<div class="view-site">
<a target="_blank" href="https://amg2318.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://francessyang.github.io/">
<img src="img/websites/fa19/francesyang.png">
</a>
<div class="description">
<div class="title">Stroll Thru Tokyo</div>
<div class="by">By: Frances Yang</div>
<div class="view-site">
<a target="_blank" href="https://francessyang.github.io/">View Site</a>
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<div class="semester">Spring 2019</div>
<div class="item">
<a target="_blank" href="https://keithpacana.github.io/mycollection/">
<img src="img/websites/sp19/keithpacana.png">
</a>
<div class="description">
<div class="title">Music Collection</div>
<div class="by">By: Keith Pacana</div>
<div class="view-site">
<a target="_blank" href="https://keithpacana.github.io/mycollection/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://chibuzorobiorah.github.io/">
<img src="img/websites/sp19/chibuzorobiorah.png">
</a>
<div class="description">
<div class="title">Personal Portfolio</div>
<div class="by">By: Chibuzor Obiorah</div>
<div class="view-site">
<a target="_blank" href="https://chibuzorobiorah.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://dfsorter.github.io/">
<img src="img/websites/sp19/cynthiazhong.png">
</a>
<div class="description">
<div class="title">Distinctive Feature Sorter</div>
<div class="by">By: Cynthia Zhong</div>
<div class="view-site">
<a target="_blank" href="https://dfsorter.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://kmaulino.github.io/">
<img src="img/websites/sp19/kmaulino.png">
</a>
<div class="description">
<div class="title">Memoirs of an Asian Dad</div>
<div class="by">By: Kayla Maulino</div>
<div class="view-site">
<a target="_blank" href="https://kmaulino.github.io/">View Site</a>
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<div class="semester">Fall 2018</div>
<div class="item">
<a target="_blank" href="https://stevensingorahardjo.github.io/">
<img src="img/websites/fa18/stevensingorahardjo.png">
</a>
<div class="description">
<div class="title">Photo Portfolio</div>
<div class="by">By: Steven Singorahardjo</div>
<div class="view-site">
<a target="_blank" href="https://stevensingorahardjo.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://minjungkim99.github.io/">
<img src="img/websites/fa18/minjungkim.png">
</a>
<div class="description">
<div class="title">House Plants</div>
<div class="by">By: Minjung Kim</div>
<div class="view-site">
<a target="_blank" href="https://minjungkim99.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://didvi.github.io/">
<img src="img/websites/fa18/didvi.png">
</a>
<div class="description">
<div class="title">De-stress</div>
<div class="by">By: Divi Schmidt</div>
<div class="view-site">
<a target="_blank" href="https://didvi.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://manankhattar.com/">
<img src="img/websites/fa18/manankhattar.png">
</a>
<div class="description">
<div class="title">Personal Profile</div>
<div class="by">By: Manan Khattar</div>
<div class="view-site">
<a target="_blank" href="http://manankhattar.com/">View Site</a>
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<div class="semester">Spring 2018</div>
<div class="item">
<a target="_blank" href="http://george-geng.github.io/bfi">
<img src="img/websites/sp18/george-geng.png">
</a>
<div class="description">
<div class="title">From Garden to Pantry</div>
<div class="by">By: George Geng</div>
<div class="view-site">
<a target="_blank" href="http://george-geng.github.io/bfi">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://mptran0101.github.io/">
<img src="img/websites/sp18/michelle-tran.png">
</a>
<div class="description">
<div class="title">Jaden Smith Irony</div>
<div class="by">By: Michelle Tran</div>
<div class="view-site">
<a target="_blank" href="https://mptran0101.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://zhengannie.github.io/">
<img src="img/websites/sp18/annie-zheng.png">
</a>
<div class="description">
<div class="title">EGGS</div>
<div class="by">By: Annie Zheng</div>
<div class="view-site">
<a target="_blank" href="https://zhengannie.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://www.fangdavid.com/">
<img src="img/websites/sp18/david-fang.png">
</a>
<div class="description">
<div class="title">David Fang</div>
<div class="by">By: David Fang</div>
<div class="view-site">
<a target="_blank" href="https://www.fangdavid.com/">View Site</a>
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<div class="semester">Fall 2017</div>
<div class="item">
<a target="_blank" href="http://liushirley.github.io/">
<img src="img/websites/fa17/shirley-liu.png">
</a>
<div class="description">
<div class="title">The Life of Shirley</div>
<div class="by">By: Shirley Liu</div>
<div class="view-site">
<a target="_blank" href="http://liushirley.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://brandonlchow.github.io/">
<img src="img/websites/fa17/brandon-chow.png">
</a>
<div class="description">
<div class="title">Shibas of Instagram</div>
<div class="by">By: Brandon Chow</div>
<div class="view-site">
<a target="_blank" href="https://brandonlchow.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://markunger.github.io/">
<img src="img/websites/fa17/mark-unger.png">
</a>
<div class="description">
<div class="title">Mark Unger</div>
<div class="by">By: Mark Unger</div>
<div class="view-site">
<a target="_blank" href="https://markunger.github.io/">View Site</a>
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<div class="semester">Spring 2017</div>
<div class="item">
<a target="_blank" href="http://jbanta.github.io/">
<img src="img/websites/sp17/johann-banta.png">
</a>
<div class="description">
<div class="title">CAVE DIVER</div>
<div class="by">By: Johann Banta</div>
<div class="view-site">
<a target="_blank" href="http://jbanta.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://zkirby.github.io/caydie/">
<img src="img/websites/sp17/caydie-tran.png">
</a>
<div class="description">
<div class="title">Caydie Tran</div>
<div class="by">By: Caydie Tran</div>
<div class="view-site">
<a target="_blank" href="https://zkirby.github.io/caydie/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://www.jeffreyyuanliu.com/thecorporation/index.html">
<img src="img/websites/sp17/jeffrey-liu.png">
</a>
<div class="description">
<div class="title">THE CORPORATION</div>
<div class="by">By: Jeffrey Liu</div>
<div class="view-site">
<a target="_blank" href="http://www.jeffreyyuanliu.com/thecorporation/index.html">View Site</a>
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<div class="semester">Fall 2016</div>
<div class="item">
<a target="_blank" href="https://chloekng.github.io/">
<img src="img/websites/fa16/chloe-ng.png">
</a>
<div class="description">
<div class="title">Hong Kong Style Cafe</div>
<div class="by">By: Chloe Ng</div>
<div class="view-site">
<a target="_blank" href="https://chloekng.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://johannahperez.github.io/">
<img src="img/websites/fa16/johannah-perez.png">
</a>
<div class="description">
<div class="title">The Bubble</div>
<div class="by">By: Johannah Perez</div>
<div class="view-site">
<a target="_blank" href="https://johannahperez.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="https://heatherchen116.github.io">
<img src="img/websites/fa16/heather-chen.png">
</a>
<div class="description">
<div class="title">Explore San Francisco</div>
<div class="by">By: Heather Chen</div>
<div class="view-site">
<a target="_blank" href="https://heatherchen116.github.io">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://varnavasudevan.com/">
<img src="img/websites/fa16/varna-vasudevan.png">
</a>
<div class="description">
<div class="title">Varna Vasudevan</div>
<div class="by">By: Varna Vasudevan</div>
<div class="view-site">
<a target="_blank" href="http://varnavasudevan.com/">View Site</a>
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<div class="semester">Spring 2016</div>
<div class="item">
<a target="_blank" href="http://franciszheng.com/photography">
<img src="img/websites/sp16/francis_zheng.jpg">
</a>
<div class="description">
<div class="title">Photography Portfolio</div>
<div class="by">By: Francis Zheng</div>
<div class="view-site">
<a target="_blank" href="http://franciszheng.com/photography">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://stephtang.github.io/">
<img src="img/websites/sp16/stephanie_tang.jpg">
</a>
<div class="description">
<div class="title">Climate Change</div>
<div class="by">By: Stephanie Tang</div>
<div class="view-site">
<a target="_blank" href="http://stephtang.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://andiebiggs14.github.io">
<img src="img/websites/sp16/andie_biggs.png">
</a>
<div class="description">
<div class="title">How to Shoot Grads</div>
<div class="by">By: Andie Biggs</div>
<div class="view-site">
<a target="_blank" href="http://stephtang.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://tinawxu.github.io">
<img src="img/websites/sp16/tina_xu.png">
</a>
<div class="description">
<div class="title">#teana</div>
<div class="by">By: Tina Xu</div>
<div class="view-site">
<a target="_blank" href="http://tinawxu.github.io">View Site</a>
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<div class="semester">Fall 2015</div>
<div class="item">
<a target="_blank" href="http://cguo24.github.io/">
<img src="img/websites/fa15/crystal-guo.jpg">
</a>
<div class="description">
<div class="title">Save the Date</div>
<div class="by">By: Crystal Guo</div>
<div class="view-site">
<a target="_blank" href="http://cguo24.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://ellenhong.github.io/food-for-thought/">
<img src="img/websites/fa15/ellen-hong.jpg">
</a>
<div class="description">
<div class="title">Food for Thought</div>
<div class="by">By: Ellen Hong</div>
<div class="view-site">
<a target="_blank" href="http://ellenhong.github.io/food-for-thought/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://jessicajji.github.io/">
<img src="img/websites/fa15/jessica-ji.jpg">
</a>
<div class="description">
<div class="title">Jessica Ji</div>
<div class="by">By: Jessica Ji</div>
<div class="view-site">
<a target="_blank" href="http://jessicajji.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://ossim.github.io/wdd-final/">
<img src="img/websites/fa15/david-xie.png">
</a>
<div class="description">
<div class="title">s l ʌ g z </div>
<div class="by">By: David Xie</div>
<div class="view-site">
<a target="_blank" href="http://ossim.github.io/wdd-final/">View Site</a>
</div>
</div>
</div>
</div><!-- container -->
<div class="container">
<div class="semester">Spring 2015</div>
<div class="item">
<a target="_blank" href="http://swipeify.herokuapp.com/#/">
<img src="img/websites/sp15/lily-nguyen.jpg">
</a>
<div class="description">
<div class="title">Swipeify</div>
<div class="by">By: Lily Ngyuen</div>
<div class="view-site">
<a target="_blank" href="http://swipeify.herokuapp.com/#/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://daggerdagr.github.io/">
<img src="img/websites/sp15/regina-ongowarsito.jpg">
</a>
<div class="description">
<div class="title">Daggerdagr</div>
<div class="by">By: Regina Ongowarsito</div>
<div class="view-site">
<a target="_blank" href="http://daggerdagr.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://rickydesign.me/#">
<img src="img/websites/sp15/ricky-holtz.jpg">
</a>
<div class="description">
<div class="title">Ricky Holtz</div>
<div class="by">By: Ricky Holtz</div>
<div class="view-site">
<a target="_blank" href="http://rickydesign.me/#">View Site</a>
</div>
</div>
</div>
</div> <!--container -->
<div class="container">
<div class="semester">Fall 2014</div>
<div class="item">
<a target="_blank" href="http://ccsdatcal.github.io/">
<img src="img/websites/fa14/andrea-ikeda.jpg">
</a>
<div class="description">
<div class="title">CCSD@Cal</div>
<div class="by">By: Andrea Ikeda</div>
<div class="view-site">
<a target="_blank" href="http://ccsdatcal.github.io/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://eric-ls.github.io/scoreportal-index/">
<img src="img/websites/fa14/eric-liang.png">
</a>
<div class="description">
<div class="title">Landing Page</div>
<div class="by">By: Eric Liang</div>
<div class="view-site">
<a target="_blank" href="http://eric-ls.github.io/scoreportal-index/">View Site</a>
</div>
</div>
</div>
<div class="item">
<a target="_blank" href="http://shawndsouza.com/">
<img src="img/websites/fa14/shawn-dsouza.jpg">
</a>
<div class="description">
<div class="title">Shawn D'Souza</div>
<div class="by">By: Shawn D'Souza</div>
<div class="view-site">
<a target="_blank" href="http://shawndsouza.com/">View Site</a>
</div>
</div>
</div>
</div><!--container -->
</main>
<footer>
<p id="about">The Web Design Decal (WDD) is a 2-unit course at UC Berkeley for anyone who wants to create a beautiful website.</p>
<a target="_blank" href="http://wdd.io" class="footer-button">Check us out</a>
<div id="social-media-container">
<div class="social-media-item"></div>
<div class="social-media-item"></div>
<div class="social-media-item"></div>
</div>
</footer>
</div> <!-- wrapper -->
<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','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-77974217-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>