-
Notifications
You must be signed in to change notification settings - Fork 0
/
award.html
959 lines (810 loc) · 50.4 KB
/
award.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Award</title>
<link rel="icon" type="image/png" href="other/gbr/ico.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/all.css" rel="stylesheet">
<link href="css/navbar.css" rel="stylesheet">
<link href="css/fa-custom.css" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap.css">
<link href="css/imagehover.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">
<script src="js/popper.min.js"></script>
<script src="js/jquery-3.4.1.js"></script>
<script src="js/bootstrap.js"></script>
<style>
body {
background-color: #cc99ff;
}
body .container {
background-color: #e9ecef;
}
/* Navbar style Choirul harus dicopy tiap page */
.bg-ungu {
background-color: #502763;
}
.transbox {
text-align: left;
width: 100%;
padding: 5px 5px 5px 15px;
background-color: #ffffff;
border: none;
opacity: 0.6;
filter: alpha(opacity=60);
/* For IE8 and earlier */
}
.transbox h3 {
padding: none;
font-weight: bold;
}
.transbox p {
padding: none;
font-weight: bold;
}
.carousel-caption {
position: left-side;
left: 0;
}
.dropdown:hover>.dropdown-menu {
display: block;
background-color: gray;
}
.dropdown>.dropdown-toggle:active {
/*Without this, clicking will make it sticky*/
pointer-events: none;
}
< !-- CSS FORM LOGIN -->
/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
background-color: #555;
color: white;
padding: 16px 20px;
border: none;
cursor: pointer;
opacity: 0.8;
bottom: 23px;
right: 28px;
width: 180px;
}
/* The popup form - hidden by default */
.form-popup {
display: none;
bottom: 0;
right: 15px;
border: 3px solid #f1f1f1;
z-index: 9;
}
/* Add styles to the form container */
.form-container {
width: 100%;
max-width: 300px;
padding: 10px;
background-color: white;
border: 1px;
}
/* Full-width input fields */
.form-container input[type=text],
.form-container input[type=password] {
padding: 15px;
margin: 5px 0 22px 0;
border: none;
background: #f1f1f1;
}
/* When the inputs get focus, do something */
.form-container input[type=text]:focus,
.form-container input[type=password]:focus {
background-color: #ddd;
outline: none;
}
/* Set a style for the submit/login button */
.form-container .btn {
background-color: #4CAF50;
color: white;
padding: 16px 20px;
border: none;
cursor: pointer;
width: 100%;
margin-bottom: 10px;
opacity: 0.8;
}
/* Add a red background color to the cancel button */
.form-container .cancel {
background-color: red;
}
/* Add some hover effects to buttons */
.form-container .btn:hover,
.open-button:hover {
opacity: 1;
}
.navbar.navbar-dark .breadcrumb .nav-item.active>.nav-link,
.navbar.navbar-dark .navbar-nav .nav-item.active>.nav-link {
background-color: rgba(255, 255, 255, 0)
}
.myButton {
-moz-box-shadow: inset 0px 1px 0px 0px #e184f3;
-webkit-box-shadow: inset 0px 1px 0px 0px #e184f3;
box-shadow: inset 0px 1px 0px 0px #e184f3;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #c123de), color-stop(1, #a20dbd));
background: -moz-linear-gradient(top, #c123de 5%, #a20dbd 100%);
background: -webkit-linear-gradient(top, #c123de 5%, #a20dbd 100%);
background: -o-linear-gradient(top, #c123de 5%, #a20dbd 100%);
background: -ms-linear-gradient(top, #c123de 5%, #a20dbd 100%);
background: linear-gradient(to bottom, #c123de 5%, #a20dbd 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c123de', endColorstr='#a20dbd', GradientType=0);
background-color: #c123de;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #a511c0;
display: inline-block;
cursor: pointer;
color: #ffffff;
font-family: Arial;
font-size: 15px;
font-weight: bold;
padding: 6px 24px;
text-decoration: none;
text-shadow: 0px 1px 0px #9b14b3;
}
.myButton:hover {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #a20dbd), color-stop(1, #c123de));
background: -moz-linear-gradient(top, #a20dbd 5%, #c123de 100%);
background: -webkit-linear-gradient(top, #a20dbd 5%, #c123de 100%);
background: -o-linear-gradient(top, #a20dbd 5%, #c123de 100%);
background: -ms-linear-gradient(top, #a20dbd 5%, #c123de 100%);
background: linear-gradient(to bottom, #a20dbd 5%, #c123de 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a20dbd', endColorstr='#c123de', GradientType=0);
background-color: #a20dbd;
}
.myButton:active {
position: relative;
top: 1px;
}
.btn-warning {
background-color: darkorange;
}
</style>
</head>
<body>
<!-- NAVBARNYA GANTI DISINI CHOOOOOOO !-->
<header>
<nav class="navbar navbar-expand-md navbar-dark ml-auto bg-ungu">
<a class="navbar-brand col-md-3" href="./index.html"><img class="img-fluid" src="other/gbr/logo2.png"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<nav class="collapse navbar-collapse col-md-9 sticky-top" id="navbarSupportedContent">
<div class="col-md-8">
<h6>
<ul class=" navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="./index.html">HOME <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="./profil.html">PROFIL</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
FAKULTAS
</a>
<div class="dropdown-menu ungu">
<a class="dropdown-item" href="./prodi.html">
<h6>Fakultas Ilmu Komputer(FIK) </h6>
</a>
<a class="dropdown-item" href="./prodi.html">
<h6>Fakutas Sain dan Teknologi(FST)</h6>
</a>
<a class="dropdown-item" href="./prodi.html">
<h6>Fakultas Ekonomi dan Sosial(FES)</h6>
</a>
</div>
</li>
<li class="nav-item active">
<a class="nav-link" href="./award.html">AWARDS</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./pmb.html">PENDAFTARAN</a>
</li>
</ul>
</h6>
</div>
<div class=" col-md-4 ">
<div class="row">
<div class="col-md">
<h5 style="color:white;">Login As : </h5>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="dropdown">
<button type="button" class="btn dropdown-toggle bg-ungu" data-toggle="dropdown">
<img src="other/gbr/mhs.png" width="40px" height="40px" alt="Mahasiswa">
</button>
<div class="dropdown-menu">
<form action="./dsb_mhs.html" class="form-container">
<label for="nim"><b>NIM</b></label><br>
<input type="text" placeholder="Masukkan NIM" name="nim" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Masukkan Password" name="psw" required>
<center><button type="submit" class="myButton">Login</button></center>
</form>
</div>
</div>
</div>
<div class="col-md-3">
<div class="dropdown">
<button type="button" class="btn dropdown-toggle bg-ungu" data-toggle="dropdown">
<img src="other/gbr/dosen.png" width="40px" height="40px" alt="Staff">
</button>
<div class="dropdown-menu">
<form action="./dsb_dsn.html" class="form-container">
<label for="nik"><b>NIK</b></label><br>
<input type="text" placeholder="Masukkan NIK" name="nik" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Masukkan Password" name="psw" required>
<center><button type="submit" class="myButton">Login</button></center>
</form>
</div>
</div>
</div>
</div>
</div>
</nav>
</nav>
</header>
<!-- NAVBARNYA GANTI DISINI CHOOOOOOO !-->
<div class="container">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="./index.html" style="color: purple">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Award</li>
</ol>
</nav>
</div>
<div class="container" style="margin-top: -30px">
<hr class="my-5">
<!--Section: Magazine v.1-->
<section class="wow fadeIn">
<!--Section heading-->
<h2 class="h1 text-center my-5" style="color: mediumpurple"><i class="fas fa-trophy" style="color: darkorange; text-shadow: 0 0 1px purple;"></i> Award AMIKOM <i class="fas fa-trophy" style="color: darkorange; text-shadow: 0 0 1px purple;"></i></h2>
<!--Grid row-->
<div class="row text-left">
<!--Grid column-->
<div class="col-lg-6 col-md-12">
<!--Image-->
<div class="view overlay rounded z-depth-1-half mb-3">
<figure class="imghvr-fade-in-right" style="background-color: purple;">
<img src="./images/Post_Webjpg.jpg" alt="example-image">
<figcaption>
<h3 class="ih-fade-down ih-delay-sm ">Battle of Surabaya</h3>
<p class="ih-zoom-in ih-delay-md">
<i>Menang Best Animation Feature di Hollywood International Moving Pictures Film Festival</i>
</p>
</figcaption>
<a href="#"></a>
</figure>
</div>
<!--Excerpt-->
<div class="news-data">
<a href="" class="light-blue-text">
<h6>
<i class="fas fa-medal"></i>
<strong> Award Terkini</strong>
</h6>
</a>
<p>
<strong>
<i class="far fa-clock"></i> 19/02/2019</strong>
</p>
</div>
<h3>
<strong>Battle Of Surabaya kembali raih award</strong>
</h3>
<p> Battle of Surabaya (November 10th) memenangkan penghargaan sebagai Best Animation Feature dari Hollywood International Moving Pictures Film Festival (HIMPFF).
</p>
<!--/Featured news-->
<hr>
<!--Small news-->
<div class="row">
<div class="col-md-3">
<!--Image-->
<div class="view overlay rounded z-depth-1">
<img src="./images/Web_Amikom_04jpg.jpg" class="img-fluid" alt="Minor sample post image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
</div>
<!--Excerpt-->
<div class="col-md-9">
<p class="dark-grey-text">
<strong style="font-size: 12px">13 Oktober 2018</strong>
</p>
<a>Cisco Network Academy Universitas Amikom meraih penghargaan Best of the Best Academy
<i class="fas fa-angle-right float-right"></i>
</a>
</div>
</div>
<!--/Small news-->
<hr>
<!--Small news-->
<div class="row">
<div class="col-md-3">
<!--Image-->
<div class="view overlay rounded z-depth-1">
<img src="./images/fishgator.jpg" class="img-fluid" alt="Minor sample post image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
</div>
<!--Excerpt-->
<div class="col-md-9">
<p class="dark-grey-text">
<strong style="font-size: 12px">6 Agustus 2018</strong>
</p>
<a>Fishgator Buatan Amikom Yogyakarta Menang di Ajang Dunia
<i class="fas fa-angle-right float-right"></i>
</a>
</div>
</div>
<!--/Small news-->
<hr>
<!--Small news-->
<div class="row">
<div class="col-md-3">
<!--Image-->
<div class="view overlay rounded z-depth-1">
<img src="./images/Post_Webpng.png" class="img-fluid" alt="Minor sample post image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
</div>
<!--Excerpt-->
<div class="col-md-9">
<p class="dark-grey-text">
<strong style="font-size: 12px">20 Agustus 2018</strong>
</p>
<a>Battle of Surabaya Raih Penghargaan Internasionalnya yang ke 23
<i class="fas fa-angle-right float-right"></i>
</a>
</div>
</div>
<!--/Small news-->
<hr>
<!--Small news-->
<div class="row">
<div class="col-md-3">
<!--Image-->
<div class="view overlay rounded z-depth-1">
<img src="./images/70-penghargaan-tingkat-inter.jpg" class="img-fluid" alt="Minor sample post image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
</div>
<!--Excerpt-->
<div class="col-md-9">
<p class="dark-grey-text">
<strong style="font-size: 12px">13 Oktober 2018</strong>
</p>
<a>Momentum Dies Natalis ke-24, Amikom Raih 70 Penghargaan Tingkat Internasional
<i class="fas fa-angle-right float-right"></i>
</a>
</div>
</div>
<!--/Small news-->
<hr>
<!--Small news-->
<div class="row">
<div class="col-md-3">
<!--Image-->
<div class="view overlay rounded z-depth-1">
<img src="./images/1255160554_tesca.jpg" class="img-fluid" alt="Minor sample post image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
</div>
<!--Excerpt-->
<div class="col-md-9">
<p class="dark-grey-text">
<strong style="font-size: 12px">10 Oktober 2009</strong>
</p>
<a>AMIKOM Masuk Nominasi TESCA 2009
<i class="fas fa-angle-right float-right"></i>
</a>
</div>
</div>
<!--/Small news-->
<hr>
<!--Small news-->
<div class="row">
<div class="col-md-3">
<!--Image-->
<div class="view overlay rounded z-depth-1">
<img src="./images/tekwodooooo.jpg" class="img-fluid" alt="Minor sample post image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
</div>
<!--Excerpt-->
<div class="col-md-9">
<p class="dark-grey-text">
<strong style="font-size: 12px">15 Maret 2019</strong>
</p>
<a>Taekwondo AMIKOM memborong mendali AMPI CUP 2019 Se-DIY & Jawa tengah
<i class="fas fa-angle-right float-right"></i>
</a>
</div>
</div>
<!--/Small news-->
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-6 col-md-12">
<!--Image-->
<div class="view overlay rounded z-depth-1-half mb-3">
<figure class="imghvr-fade-in-right" style="background-color: purple;">
<img src="./images/Social_Media_Post_2jpg.jpg" alt="example-image">
<figcaption>
<h3 class="ih-fade-down ih-delay-sm ">AMIKOM Business Park</h3>
<p class="ih-zoom-in ih-delay-md">
<i>Mendapatkan penghargaan ICSB INDONESIA PRESIDENTIAL AWARD 2018 untuk kategori Researcher dalam Gebyar UKM Indonesia 2018 yang diadakan oleh International Council for Small Business (ICSB) Indonesia dan MarkPlus,</i>
</p>
</figcaption>
<a href="#"></a>
</figure>
</div>
<!--Excerpt-->
<div class="news-data">
<a href="" class="light-blue-text">
<h6>
<i class="fas fa-medal"></i>
<strong> Award Terkini</strong>
</h6>
</a>
<p>
<strong>
<i class="far fa-clock"></i> 12/11/2018</strong>
</p>
</div>
<h3>
<a>
<strong>ABP Mendapatkan penghargaan ICSB</strong>
</a>
</h3>
<p>Amikom Business Park Mendapatkan penghargaan ICSB INDONESIA PRESIDENTIAL AWARD 2018 untuk kategori Researcher dalam Gebyar UKM Indonesia 2018
</p>
<!--/Featured news-->
<hr>
<!--Small news-->
<div class="row">
<div class="col-md-3">
<!--Image-->
<div class="view overlay rounded z-depth-1">
<img src="./images/wisuda_70.jpg" class="img-fluid" alt="Minor sample post image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
</div>
<!--Excerpt-->
<div class="col-md-9">
<p class="dark-grey-text">
<strong style="font-size: 12px">28 April 2019</strong>
</p>
<a>Penghargaan Internasional Jadi Hadiah di Wisuda Amikom Ke-70
<i class="fas fa-angle-right float-right"></i>
</a>
</div>
</div>
<!--/Small news-->
<hr>
<!--Small news-->
<div class="row">
<div class="col-md-3">
<!--Image-->
<div class="view overlay rounded z-depth-1">
<img src="./images/Apicta_2017.jpg" class="img-fluid" alt="Minor sample post image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
</div>
<!--Excerpt-->
<div class="col-md-9">
<p class="dark-grey-text">
<strong style="font-size: 12px">20 Desember 2017</strong>
</p>
<a>Gablind dan Fishtron Meraih Penghargaan Merit Award Dalam APICTA 2017 di Bangladesh
<i class="fas fa-angle-right float-right"></i>
</a>
</div>
</div>
<!--/Small news-->
<hr>
<!--Small news-->
<div class="row">
<div class="col-md-3">
<!--Image-->
<div class="view overlay rounded z-depth-1">
<img src="./images/asean-ict-awards-bc9.jpg" class="img-fluid" alt="Minor sample post image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
</div>
<!--Excerpt-->
<div class="col-md-9">
<p class="dark-grey-text">
<strong style="font-size: 12px">8 Desember 2018</strong>
</p>
<a>Film Animasi Produksi AMIKOM Yogyakarta Menang di Asean ICT Awards <em class="fas fa-angle-right float-right"></em> </a>
</div>
</div>
<!--/Small news-->
<hr>
<!--Small news-->
<div class="row">
<div class="col-md-3">
<!--Image-->
<div class="view overlay rounded z-depth-1">
<img src="./images/web-ranking2.jpg" class="img-fluid" alt="Minor sample post image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
</div>
<!--Excerpt-->
<div class="col-md-9">
<p class="dark-grey-text">
<strong style="font-size: 12px">31 Juli 2009</strong>
</p>
<a>AMIKOM Yogyakarta Menjadi Perguruan Tinggi Terbaik Se-Indonesia Versi Webometrics
<i class="fas fa-angle-right float-right"></i>
</a>
</div>
</div>
<!--/Small news-->
<hr>
<!--Small news-->
<div class="row">
<div class="col-md-3">
<!--Image-->
<div class="view overlay rounded z-depth-1">
<img src="./images/tesca_2.jpg" class="img-fluid" alt="Minor sample post image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
</div>
<!--Excerpt-->
<div class="col-md-9">
<p class="dark-grey-text">
<strong style="font-size: 12px">24 Oktober 2009</strong>
</p>
<a>AMIKOM Sabet Dua Penghargaan Telkom Smart Campus Award 2009
<i class="fas fa-angle-right float-right"></i>
</a>
</div>
</div>
<!--/Small news-->
<hr>
<!--Small news-->
<div class="row">
<div class="col-md-3">
<!--Image-->
<div class="view overlay rounded z-depth-1">
<img src="./images/inac.jpg" class="img-fluid" alt="Minor sample post image">
<a>
<div class="mask rgba-white-slight"></div>
</a>
</div>
</div>
<!--Excerpt-->
<div class="col-md-9">
<p class="dark-grey-text">
<strong style="font-size: 12px">03 Juli 2010</strong>
</p>
<a>iFresh, Karya Inovasi Mahasiswa STMIK AMIKOM Melaju ke Penjurian Tahap II INAICTA
<i class="fas fa-angle-right float-right"></i>
</a>
</div>
</div>
<br>
<br>
<!--/Small news-->
</div>
<!--Grid column-->
</div>
<!--Grid row-->
</section>
<!--/Section: Magazine v.1-->
<!-- Button trigger modal -->
<div class="col text-center">
<button type="button" class="btn btn-warning" data-toggle="modal" data-target="#exampleModalLong" style="color: white; text-align: center">
Daftar Lengkap AWARD AMIKOM
</button>
</div>
<br>
<!-- Modal -->
<div class="modal fade" id="exampleModalLong" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog modal-xl" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Full List Award</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<h2 style="text-align: center"> <i class="fas fa-globe"></i> International Award</h2>
<hr>
<ul class="fa-ul">
<li><i class="fas fa-award"></i> <a>Battle of Surabaya (November 10th), Gold Remi Award, Worldfest, Houston, International Film Festival 2016-M.Suyanto, Aryanto Yuniawan, Adi Djayusman, Lukman Chandra, Heri Sulistyo</a></li>
<li><i class="fas fa-award"></i> <a>Battle of Surabaya (November 10th), Grandprize Winner, SICAF 2016, The 20th Seoul International Cartoon and Animation Festival – M.Suyanto, Aryanto Yuniawan, Adi Djayusman, Lukman Chandra, Heri Sulistyo</a></li>
<li><i class="fas fa-award"></i> <a>Battle of Surabaya (November 10th), Winner Best Animation, 3th Noida International Film Festival 2016 – M.Suyanto, Aryanto Yuniawan, Adi Djayusman, Lukman Chandra, Heri Sulistyo.</a></li>
<li><i class="fas fa-award"></i> <a>Gablind, Nominee International ICT Innovative Service Contest, Taiwan, 2016 – Jeki Kuswanto, Eko Rahmat Slamet Hidayat, Arvin C Frobenius</a></li>
<li><i class="fas fa-award"></i> <a>BSmart, Nominee Asia Pacific ICT Award, Taiwan, 2016 – Elik Hari Muktafin, Budi Sulistiyo Jati, Heriyanto</a></li>
<li><i class="fas fa-award"></i> <a>Gablind, Nominee Asia Pacific ICT Award, Taiwan, 2016 -Jeki Kuswanto, Eko Rahmat Slamet Hidayat, Arvin C Frobenius</a></li>
<li><i class="fas fa-award"></i> <a>HICO, Nominee, The use of ICTs in education for disadvantaged groups, UNESCO 2016.-Donni Prabowo, Pendi Ventri Hendika, Bety Wulan Sari</a></li>
<li><i class="fas fa-award"></i> <a>Ahada, Nominee, The use of ICTs in education for disadvantaged groups, UNESCO 2016 – Donni Prabowo, Afif Bimantara, Bram Pratowo</a></li>
<li><i class="fas fa-award"></i> <a>BTOUCH, Nominee, The use of ICTs in education for disadvantaged groups, UNESCO 2016.- Elik Hari Muktafin, Budi Sulistiyo Jati, Heriyanto</a></li>
<li><i class="fas fa-award"></i> <a>Battle of Surabaya (November 10th), Official Selection, Holland Animation Film Festival 2016 – M.Suyanto, Aryanto Yuniawan, Adi Djayusman, Lukman Chandra, Heri Sulistyo.</a></li>
<li><i class="fas fa-award"></i> <a>Battle of Surabaya (November 10th), Official Selection, Animation Dingle, Ireland 2016 – M.Suyanto, Aryanto Yuniawan, Adi Djayusman, Lukman Chandra, Heri Sulistyo.</a></li>
<li><i class="fas fa-award"></i> <a>Battle of Surabaya (November 10th), Special Screening, New Chitose Airport Animation Festival Japan, 2016 – M.Suyanto, Aryanto Yuniawan, Adi Djayusman, Lukman Chandra, Heri Sulistyo.</a></li>
<li><i class="fas fa-award"></i> <a>Battle of Surabaya (November 10th), Special Screening, Athens Animfest, Greece, 2016 – M.Suyanto, Aryanto Yuniawan, Adi Djayusman, Lukman Chandra, Heri Sulistyo.</a></li>
<li><i class="fas fa-award"></i> <a>HICO, Nominee Asia Pacific ICT Award, Srilangka, 2015 – Donni Prabowo, Pendi Ventri Hendika, Bety Wulan Sari</a></li>
<li><i class="fas fa-award"></i> <a>BToucht, Nominee Asia Pacific ICT Award, Srilangka, 2015 – Elik Hari Muktafin, Budi Sulistiyo Jati, Heriyanto</a></li>
<li><i class="fas fa-award"></i> <a>Battle of Surabaya (November 10th), The Faces of Indonesia Cinema Today, 10th Jogja NETPAC Asian Film Festival 2015 – M.Suyanto, Aryanto Yuniawan, Adi Djayusman, Lukman Chandra, Heri Sulistyo.</a></li>
<li><i class="fas fa-award"></i> <a>Battle of Surabaya (November 10th), Nominated for Best Foreign Animation/Family Trailer Award (2014) – M.Suyanto, Aryanto Yuniawan, Adi Djayusman, Lukman Chandra, Heri Sulistyo</a></li>
<li><i class="fas fa-award"></i> <a>AHADA, Nominees @ Asia Pacific ICT Alliance (APICTA) Awards, Jakarta 2014 – Donni Prabowo, Afif Bimantara, Bram Pratowo</a></li>
<li><i class="fas fa-award"></i> <a>Finalist Grand Final Master Overclocking Arena (MOA), Taiwan, 2014 – Christi Roderto R.S</a></li>
<li><i class="fas fa-award"></i> <a>Winner of Asia-Pasific Class A, Master Overclocking Arena (MOA), Jakarta, 2014 – Christi Roderto R.S</a></li>
<li><i class="fas fa-award"></i> <a>Winner of International Movie Trailer Festival (IMTF) 2013 – M.Suyanto, Aryanto Yuniawan, Adi Djayusman, Lukman Chandra, Heri Sulistyo</a></li>
<li><i class="fas fa-award"></i> <a>AHADA, Nominees @ Asia Pacific ICT Alliance (APICTA) Awards,Hongkong 2013 – Donni Prabowo, Afif Bimantara, Bram Pratowo</a></li>
<li><i class="fas fa-award"></i> <a>SHAND, Nominee International ICT Innovative Service Contest, Taiwan, 2012.- Nuruddin Wiranda, Donni Prabowo, Afif Bimantara</a></li>
<li><i class="fas fa-award"></i> <a>The Winner of The Best Websites Tourism Promotion Organization Asia Pacific Cities, Beijing, China 2011.</a></li>
<li><i class="fas fa-award"></i> <a>Nominees @ Asia Pacific ICT Alliance (APICTA) Awards – Arief Setyanto, S.Si, MT</a></li>
<li><i class="fas fa-award"></i> <a>The Best e-Practice Asia Pacific Economic Digital Opportunity Center Award (ADOC) Award – Arief Setyanto, S.Si, MT</a></li>
<li><i class="fas fa-award"></i> <a>The Best e-Practice Asia Pacific Economic Digital Opportunity Center Award (ADOC) Award – Kusrini, Dr., M.Kom</a></li>
<li><i class="fas fa-award"></i> <a>Nominees @ Asia Pacific ICT Alliance (APICTA) Awards – Andi Sunyoto, M.Kom</a></li>
<li><i class="fas fa-award"></i> <a>Nominees @ Asia Pacific ICT Award Alliance (APICTA) – Hendro Wibowo</a></li>
<li><i class="fas fa-award"></i> <a>Merit award @ Asia Pacific ICT Alliance (APICTA) Awards – Hanif Al Fatta, M.Kom</a></li>
<li><i class="fas fa-award"></i> <a>Nominees of Urban Animation International Festival – M. Suyanto, Prof. Dr, M.M. and Aryanto Yuniawan, A.Md</a></li>
<li><i class="fas fa-award"></i> <a>Merit award @ Asia Pacific ICT Alliance (APICTA) Awards – Arief Setyanto</a></li>
<li><i class="fas fa-award"></i> <a>The Winner of Oto Web Contest, Sumitomo Corporation 2006 – Jaeni</a></li>
<li><i class="fas fa-award"></i> <a>The Best e-Practices Asia Pacific Economic Digital Opportunity Center (ADOC) Award,2006 – Kusrini</a></li>
<li><i class="fas fa-award"></i> <a>The Best e-Practices Asia Pacific Economic Digital Opportunity Center (ADOC) Award,2006 – Arief Setyanto</a></li>
<li><i class="fas fa-award"></i> <a>Winner ASEAN Development Citra Award -2005, M. Suyanto</a></li>
<li><i class="fas fa-award"></i> <a>The Winner of Techscape Anniversary Web Contest, 2004 – Jaeni</a></li>
</ul>
<br>
<h2 style="text-align: center"> <i class="fas fa-flag"></i> Nasional Award</h2>
<hr>
<ol type="1">
<li><a>Amikom Business Park (I2TY), The Best Incubator, Indonesia Innovations and Innovators Expo, 2016.</a></li>
<li><a>Winner National Intellectual Property Award 2016-Animator – Aryanto Yuniawan</a></li>
<li><a>HICO, Winner the category of Digital Interactive Media, Indonesia ICT Award 2015 – Donny Prabowo, Bety Wulansari, Pendy Ventri Hendika.</a></li>
<li><a>BTouch, Winner the category of E-Inclusion and Sustanability, Indonesia ICT Award 2015 – Elik Hari Muktafin, Budi Sulistyo Jati, Lusia Suryantoro.</a></li>
<li><a>Winner National Intellectual Property Award 2015-Creative Human in Creative Economy – M. Suyanto</a></li>
<li><a>Integrated University, Winner the category of e-Learning, Indonesia ICT Award 2012 – Jaeni, Donni Prabowo, Afif Bimantara</a></li>
<li><a>Winner the category Digital Entertainment – Animation (Battle of Surabaya), Indonesia ICT Award 2012 – M. Suyanto, Aryanto Yuniawan, Adi Djayusman, Dida Karisma, Budi Setiawan, Endry Setiawan</a></li>
<li><a>Nominator kategori E-Inclution (Shand), Indonesia ICT Award 2012-Nuruddin Wiranda, Afif bimantara, Donni Prabowo</a></li>
<li><a>Nominator kategori Digital Entertainment – Animation (Belajar Di sekolah), Indonesia ICT Award 2012 – M. Suyanto, Aryanto Yuniawan, Adi Djayusman, Dida Karisma, Budi Setiawan, Endry Session</a></li>
<li><a>Nominator kategori Digital Entertainment – Animation (Pohon Pisang), Indonesia ICT Award 2012.- M. Suyanto, Aryanto Yuniawan, Adi Djayusman, Dida Karisma, Budi Setiawan, Endry Setiawan</a></li>
<li><a>Nominator kategori Digital Entertainment – Animation (Layang-layang), Indonesia ICT Award 2012-M. Suyanto, Aryanto Yuniawan, Adi Djayusman, Dida Karisma, Budi Setiawan, Endry Setiawan</a></li>
<li><a>Nominator kategori Digital Entertainment – Animation (Hadiah Kejujuran), Indonesia ICT Award 2012- M. Suyanto, Aryanto Yuniawan, Adi Djayusman, Dida Karisma, Budi Setiawan, Endry Setiawan</a></li>
<li><a>1st Winner Indigo Fellowship Category in Film Animation, “Battle of Surabaya”, by PT Telekomunikasi Indonesia, Tbk. (2012)-M. Suyanto, Aryanto Yuniawan, Adi Djayusman, Dida Karisma, Budi Setiawan, Endry Setiawan</a></li>
<li><a>Nominee Animated Film in Apresiasi Film Indonesia by Art and Film Board of Ministry of Culture and Education of The Republic of Indonesia. (2012)-M. Suyanto, Aryanto Yuniawan, Adi Djayusman, Dida Karisma, Budi Setiawan, Endry Setiawan</a></li>
<li><a>Nomination Top 10 Animafest 2D Short Animated Film MNCTV, “Briptu Dorman”.(2011)-M. Suyanto, Aryanto Yuniawan, Adi Djayusman, Dida Karisma, Budi Setiawan, Endry Setiawan</a></li>
<li><a>Second Winner Award of Digital Animation Cartoon Movie “The Adventure of Abdan – Present of Honesty” Exhibition Indonesian Production – Minister of Industry Republic of Indonesia.(2009)-M. Suyanto, Aryanto Yuniawan, Adi Djayusman, Dida Karisma, Budi Setiawan, Endry Setiawan</a></li>
<li><a>Winner ICT Award Category of Student Project Indonesia ICT Award, 2009 – Hendro Widowo</a></li>
<li><a>The Winner of Telcom Smart Campus Award (TeSCA), 2009, the Platinum for High School – Arief Setyanto, Jaeni</a></li>
<li><a>The Winner of Telcom Smart Campus Award (TeSCA) 2009, the Platinum for Digitalpreneur Incubation – Arief Setyanto, Jaeni</a></li>
<li><a>The Youngest Administration of E-Education Development by Ministry of National Education, 2009 – Jaeni</a></li>
<li><a>Nominee ICT Award Category of Research and Development, Indonesia ICT Award, 2009 – And Sunyoto</a></li>
<li><a>Merit Winner Award ICT Award Category in Digital Animation Inaicta April 2008 – Minister for Communication and Information Technology Republic of Indonesia Award</a></li>
<li><a>Winner Integrated Research Result Award 2008 – Kusrini</a></li>
<li><a>Runner Up Research LIPI Award 2008-Kusrini,</a></li>
<li><a>Winner Top 100 Indonesia Innovation 2008 -Asro Nasiri, Third Ismail</a></li>
<li><a>Finalist Indonesia ICT Award 2008 for TELKOM Smart Campus-Arif Setyanto,</a></li>
<li><a>Nomination Indonesia ICT Award 2008, for Research and Development – Asro Nasiri, Third Ismail</a></li>
<li><a>Asro Nasiri, Nomination ICT Award 2008 for Tools and Infrastructure</a></li>
<li><a>Arif Setyanto, Merit Indonesia ICT Award 2006 for Education and Training</a></li>
<li><a>Hanif Alfatta, Merit Indonesia ICT Award 2006 for Student Project</a></li>
<li><a>Finalist Indonesia Asia Pacific Economic Cooperation Digital Opportunity Center (ADOC) Award 2006-Arif Setyanto,</a></li>
<li><a>Finalist Asia Pacific Economic Cooperation Digital Opportunity Center (ADOC) Award 2006-Kusrini</a></li>
<li><a>Nomination ICT Award 2008 for Tools and Infrastructure – Arif Dwi Laksito</a></li>
<li><a>Nomination ICT Award 2008 for Student Project -Ratno Kustiawan,</a></li>
<li><a>Finalist Indonesia ICT Award 2008 for TELKOM Smart Campus-Madiya Hayati</a></li>
<li><a>Second Winner, Indosat Wireless Internet and Communication, 2006.-Andi Sunyoto,</a></li>
<li><a>Quarter Final, Indonesia Robot Competition 2007-AMIKOM STUDENT</a></li>
<li><a>Gold Medal, Tae Kwon Do, Invitasi Olah Raga Nasional Antar Perguruan Tinggi 2006-Ibnu Majid</a></li>
<li><a>Bronze Medal, Tae Kwon Do, Invitasi Olah Raga Nasional Antar Perguruan Tinggi 2006-Grace J.M. Pattimahu</a></li>
<li><a>Best Speaker, Java Varsities English Debate 2006.-Doni Agustian</a></li>
<li><a>Best Speaker, The 9th Indonesian Varities English Debate “2006”-David Agustriawan and Custiana</a></li>
<li><a>Best Speaker, The 9th Indonesian Varities English Debate “2007”-Mandahadi and Ridwan</a></li>
<li><a>General Winner, XTREME GAMES NATIONAL COMPETITION 2006.-Mayapala Team</a></li>
<li><a>The Best Students Heiper 2007.-David Agustian</a></li>
<li><a>English Speech Contest 2006.-David, Fadya, Doni, Custiana</a></li>
<li><a>Bronze Medal for Feather Class, KEJURDA Tae Kwon Do Se-Yogyakarta 2006-M.Muhyat</a></li>
<li><a>Silver Medal for Light Class, KEJURDA Tae Kwon Do Se-Yogyakarta 2006–Ridwan, C.N.</a></li>
<li><a>Silver Medal for Welter Class, KEJURDA Tae Kwon Do Se-Yogyakarta 2006-Wisnuaji Dwi Putra</a></li>
<li><a>Silver Medal for Heavy Class, KEJURDA Tae Kwon Do Se-Yogyakarta 2006-M. Faizal</a></li>
<li><a>Silver Medal for Featheer Class, KEJURDA Tae Kwon Do Se-Yogyakarta 2006-Retno Dewanti</a></li>
<li><a>Bronze Medal for Welter Class, KEJURDA Tae Kwon Do Se-Jawa Tengah 2006-Handoko</a></li>
<li><a>Bronze Medal for Welter Class, PORDA Tae Kwon Do Se-Jawa Tengah 2005-Handoko</a></li>
<li><a>Silver Medal for Welter Class, PORDA Tae Kwon Do Se-Jawa Tengah 2004-Fadly Syaibani</a></li>
<li><a>Bronze Medal for Welter Class, PORDA Tae Kwon Do Se-Jawa Tengah 2003-Handoko</a></li>
<li><a>Silver Medal for Welter Class, KEJURDA Tae Kwon Do Se-Jawa Tengah 2003-Fadly Syaibani</a></li>
</ol>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
<br>
</div>
<br>
</div>
</main>
<footer class="container-fluid">
<div class="row">
<div class="col-sm-4">
<h2 style="font-size: 14px; font-weight: 600; margin-left: 200px">Copyright © 2019</h2>
<p style="font-size: 13px; margin-left: 200px">UNIVERSITAS AMIKOM YOGYAKARTA<br>All right reserved</p>
</div>
<div class="col-sm-4">
<h2 style="font-size: 14px; font-weight: 600; margin-left: 15px">Menu</h2>
<div class="col-md-6">
<ul class="list-unstyled sitemaplink">
<li style="font-size: 13px; margin-right: 40px; color: white; margin: 0 0 5px 0"><a href="./sitemap.html" class="nodecoration">Sitemap</a></li>
<li style="font-size: 13px; margin-right: 40px; color: white; margin: 0 0 5px 0"><a href="./sarana.html" class="nodecoration">Sarana & Prasarana</a></li>
<li style="font-size: 13px; margin-right: 40px; color: white; margin: 0 0 5px 0"><a href="./organisasi.html" class="nodecoration">Struktur Organisasi</a></li>
<li style="font-size: 13px; margin-right: 40px; color: white; margin: 0 0 5px 0"><a href="./pmhmn.html" class="nodecoration">Tim Penyusun</a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<h2 style="font-size: 14px; font-weight: 600; margin-left: 40px">UNIVERSITAS AMIKOM YOGYAKARTA</h2>
<p style="font-size: 13px; margin-left: 40px">Kampus Terpadu : Jl. Ring Road Utara,<br>
Condong Catur, Sleman, Yogyakarta<br>
Telp: (0274) 884201 - 207<br>
Fax: (0274) 884208 Kodepos: 55283<br>
E-Mail: [email protected]</p>
<h2 style="font-size: 14px; font-weight: 600; margin-left: 40px">International Office</h2>
<p style="font-size: 13px; margin-left: 40px">Telp: +62 274884 201 Ext. 612<br>
Fax: +62 274884 208<br>
E-Mail: [email protected]</p>
</div>
</div>
</footer>
<footer class="container-fluid" style="background-color: #311e54; padding: 1%">
<div class="logo-footer">
<div class="logo-footer">
<div class="row">
<div class="col-sm-6 text-left">
<a href="./index.html"><img src="./images/logo-footer-univ.png" alt="" style="margin-left: 195px"></a>
</div>
<div class="col-sm-6 text-right" style="margin-left: 470px; margin-top: -30px">
<div class="social">
<a href="https://www.facebook.com/fleetimee" style="text-decoration: none"><i class="fab fa-facebook-f fa-lg"></i>
<a href="https://twitter.com/Kooongggg" style="text-decoration: none"><i class="fab fa-twitter fa-lg"></i>
<a href="https://www.instagram.com/kooonggggg/" style="text-decoration: none"><i class="fab fa-instagram fa-lg"></i>
<a href="https://www.youtube.com/channel/UC_CYJBNLjKMmr9XZ6m3oSpg?view_as=subscriber" style="text-decoration: none"><i class="fab fa-youtube fa-lg"></i>
<a href="https://steamcommunity.com/id/fleetime/" style="text-decoration: none"><i class="fab fa-steam fa-lg"></i>
</div>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>