-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
894 lines (823 loc) · 33.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Stuff</title>
<!-- Load an icon library -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
<script src="https://unpkg.com/feather-icons"></script>
<!-- Style CSS -->
<link rel="stylesheet" href="style.css" />
<!-- Favicon -->
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon" />
</head>
<body>
<!-- Header -->
<header class="navbar">
<!-- Logo -->
<div class="logo">
<img
src="assets/icons8-contact-100.png"
alt="logo"
onmousedown="event.preventDefault ? event.preventDefault() : event.returnValue = false" />
</div>
</header>
<!-- Mobile Navigation -->
<nav class="navbar-mobile">
<ul class="mobile-menu">
<!-- Home -->
<li>
<a
href="https://kyriten.github.io/contact-stuff"
class="active mobile-links"
><i data-feather="home"></i><span>Home</span></a
>
</li>
</ul>
</nav>
<main class="container">
<article class="creator-status">
<!-- Kontak Program Studi -->
<table class="mb-4 pl-2 pr-2" style="border-spacing: 0 15px">
<span class="status status-green"> Program Studi </span>
<!-- Prodi -->
<tr style="text-align: left">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">
Kaprodi Ilmu Komputer
</h4>
<p>Arie Qur'ania, S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6285645612539" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Asisten Prodi -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">
Asisten Prodi Ilmu Komputer
</h4>
<p>Irma Anggraeni, S.T., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6285284853657" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- TU Prodi -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">
Official TU Ilmu Komputer
</h4>
<p>Anis Fitria Nandani</p>
</th>
<th>
<a href="https://wa.me/6281297251074" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- TU Prodi -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">
Official TU Ilmu Komputer
</h4>
<p>Eka Triana</p>
</th>
<th>
<a href="https://wa.me/6282146503784" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Unknown Title -->
<tr style="text-align: left">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Unknown Title</h4>
<p>Endang Suhendar, M.Kom.</p>
</th>
<th>
<a href="https://wa.me/" target="_blank"
><button class="btn btn-disabled" disabled>Chat</button></a
>
</th>
</tr>
</table>
<!-- Lab Komputer -->
<table class="mb-4 pl-2 pr-2" style="border-spacing: 0 15px">
<span class="status status-red"> Laboratorium Komputer </span>
<!-- Kepala Lab -->
<tr style="text-align: left">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">
Kepala Laboratorium Komputer
</h4>
<p>Dr. Fajar Delli Wihartiko, S.Si., M.M., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/628121104278" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Laboran 1 -->
<tr style="text-align: left">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Laboran 1</h4>
<p>Tuis Marsono, Amd.Kom</p>
</th>
<th>
<a href="https://wa.me/6285289647323" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Laboran 2 -->
<tr style="text-align: left">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Laboran 2</h4>
<p>Nurhasan</p>
</th>
<th>
<a href="https://wa.me/" target="_blank"
><button class="btn btn-disabled" disabled>Chat</button></a
>
</th>
</tr>
<!-- Laboran 3 -->
<tr style="text-align: left">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Laboran 3</h4>
<p>Yanu Nurmansyah, S.Kom.</p>
</th>
<th>
<a href="https://wa.me/" target="_blank"
><button class="btn btn-disabled" disabled>Chat</button></a
>
</th>
</tr>
<!-- Laboran 4 -->
<tr style="text-align: left">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Laboran 4</h4>
<p>Muhamad Raka Abdila</p>
</th>
<th>
<a href="https://wa.me/6289614528565" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
</table>
<!-- Lab Workshop -->
<table class="mb-2 pl-2 pr-2" style="border-spacing: 0 15px">
<span class="status status-blue"> Laboratorium Workshop </span>
<!-- Kepala Lab -->
<tr style="text-align: left">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">
Kepala Laboratorium Workshop
</h4>
<p>Agus Ismangil, S.Si., M.Si.</p>
</th>
<th>
<a href="https://wa.me/6281292263427" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Laboran 1 -->
<tr style="text-align: left">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Laboran 1</h4>
<p>Sumarso, S.H., M.H.</p>
</th>
<th>
<a href="https://wa.me/" target="_blank"
><button class="btn btn-disabled" disabled>Chat</button></a
>
</th>
</tr>
<!-- Laboran 2 -->
<tr style="text-align: left">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Laboran 2</h4>
<p>Resdianto Affandi</p>
</th>
<th>
<a href="https://wa.me/" target="_blank"
><button class="btn btn-disabled" disabled>Chat</button></a
>
</th>
</tr>
</table>
</article>
<div class="content">
<article class="creator-status">
<!-- Dosen Group 1-->
<table class="mb-4 pl-2 pr-2" style="border-spacing: 0 15px">
<span class="status status-nila"> Dosen Group 1</span>
<!-- Dosen 1 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 1</h4>
<p>Prof. Dr.-Ing. Soewarto Hardhienata</p>
</th>
<th>
<a href="https://wa.me/6281290852293" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 2 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 2</h4>
<p>Prof. Dr. Sri Setyaningsih, M.Si.</p>
</th>
<th>
<a href="https://wa.me/6281382613390" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 3 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 3</h4>
<p>Asep Denih, S.Kom., M.Sc., Ph.D.</p>
</th>
<th>
<a href="https://wa.me/6281316155895" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 4 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 4</h4>
<p>Dr. Herfina, S.Kom., M.Pd., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6285777445577" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 5 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 5</h4>
<p>Dr. Prihastuti Harsani, S.Si., M.Si.</p>
</th>
<th>
<a href="https://wa.me/6281383639139" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 6 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 6</h4>
<p>Lita Karlitasari, S.Kom., MMSI.</p>
</th>
<th>
<a href="https://wa.me/628569093787" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 7 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 7</h4>
<p>Dr. Tjut Awaliyah Z., S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6281574510041" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 8 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 8</h4>
<p>Sufiatul Maryana, S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/628129895991" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 9 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 9</h4>
<p>Agung Prajuhana Putra, S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/628129895991" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 10 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 10</h4>
<p>Siska Andriani, S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6281291354442" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 11 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 11</h4>
<p>Dinar Munggaran Akhmad, S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6281294007449" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 12 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 12</h4>
<p>Mohamad Iqbal Suriansyah, S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6281281161537" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 13 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 13</h4>
<p>Ema Kurnia, M.Sc.</p>
</th>
<th>
<a href="https://wa.me/" target="_blank"
><button class="btn btn-disabled" disabled>Chat</button></a
>
</th>
</tr>
<!-- Dosen 14 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 14</h4>
<p>Puspa Citra, S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6287870369220" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 15 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 15</h4>
<p>Dian Kartika Utami, M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6285218334116" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 16 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 16</h4>
<p>Halimah Tussa'diah, M.Kom</p>
</th>
<th>
<a href="https://wa.me/6281383412274" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 17 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 17</h4>
<p>Gustian Rama Putra, MMSI</p>
</th>
<th>
<a href="https://wa.me/6282227685050" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 18 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 18</h4>
<p>Lina Susanti, S.S., M.Pd</p>
</th>
<th>
<a href="https://wa.me/6285710888670" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 19 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 19</h4>
<p>Sasongko S. Putro, M.Hum.</p>
</th>
<th>
<a href="https://wa.me/" target="_blank"
><button class="btn btn-disabled" disabled>Chat</button></a
>
</th>
</tr>
<!-- Dosen 20 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 20</h4>
<p>Erniyati, S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6281317060431" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 21 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 21</h4>
<p>Mulyati, S.Si., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6285277517185" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 22 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 21</h4>
<p>Hari Harsono, MM, MBA.</p>
</th>
<th>
<a href="https://wa.me/" target="_blank"
><button class="btn btn-disabled" disabled>Chat</button></a
>
</th>
</tr>
<!-- Dosen 23 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 23</h4>
<p>Dr. Henny Suharyati, MA</p>
</th>
<th>
<a href="https://wa.me/6281213983986" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 24 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 24</h4>
<p>Dyah Krystyowati, M.Hum.</p>
</th>
<th>
<a href="https://wa.me/6285741600502" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
</table>
</article>
</div>
<div class="content">
<article class="creator-status">
<!-- Dosen Group 2-->
<table class="mb-4 pl-2 pr-2" style="border-spacing: 0 15px">
<span class="status status-nila"> Dosen Group 2 </span>
<!-- Dosen 25 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 25</h4>
<p>Dini Suhartini, MMSI</p>
</th>
<th>
<a href="https://wa.me/6282111612490" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 26 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 26</h4>
<p>Deden Ardiansyah, M.Kom.</p>
</th>
<th>
<a href="https://wa.me/" target="_blank"
><button class="btn btn-disabled" disabled>Chat</button></a
>
</th>
</tr>
<!-- Dosen 27 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 27</h4>
<p>Boldson Herdianto, S.Kom., MMSI.</p>
</th>
<th>
<a href="https://wa.me/6285855888262" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 28 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 28</h4>
<p>Dr. Hermawan Thaheer</p>
</th>
<th>
<a href="https://wa.me/62818108883" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 29 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 29</h4>
<p>Asep Saepulrohman, S.Si., M.Si.</p>
</th>
<th>
<a href="https://wa.me/62817774624" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 30 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 30</h4>
<p>Adriana Sari Aryani, S.Kom., M.Cs.</p>
</th>
<th>
<a href="https://wa.me/6281319833944" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 31 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 31</h4>
<p>Dedy Yusar, SS., M.Pd</p>
</th>
<th>
<a href="https://wa.me/" target="_blank"
><button class="btn btn-disabled" disabled>Chat</button></a
>
</th>
</tr>
<!-- Dosen 32 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 32</h4>
<p>Akbar Sugih Miftahul Huda, M.Kom.</p>
</th>
<th>
<a href="https://wa.me/628567695984" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 33 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 33</h4>
<p>Aries Maesya, S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6282112094583" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 34 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 34</h4>
<p>Teguh Puja Negara, S.Si., M.Si.</p>
</th>
<th>
<a href="https://wa.me/6285715591413" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 35 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 35</h4>
<p>Victor Ilyas Sugara, S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/62817775524" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 36 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 36</h4>
<p>Eneng Tita Tosida, S.Tp., M.Si., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/628129599049" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 37 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 37</h4>
<p>Yusma Yanti, M.Si.</p>
</th>
<th>
<a href="https://wa.me/6285263909407" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 38 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 38</h4>
<p>Dr. Andi Chaerunnas, S.Kom., M.Pd., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6287873999459" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 39 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 39</h4>
<p>Dr. Iyan Mulyana, S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6281318103370" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 40 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 40</h4>
<p>Kotim Subandi, S.Kom., MT.</p>
</th>
<th>
<a href="https://wa.me/6281513394498" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 41 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 41</h4>
<p>Irfan Wahyudin, S.Si., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/628563122366" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 42 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 42</h4>
<p>Heri Bambang Santoso, S.Kom., M.Kom.</p>
</th>
<th>
<a href="https://wa.me/6281212229344" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 43 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 43</h4>
<p>Drs. Syarif Hidayatullah, M.Kom.</p>
</th>
<th>
<a href="https://wa.me/628121996138" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 44 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 44</h4>
<p>Sa'ad Nurul Islah, M.Comp</p>
</th>
<th>
<a href="https://wa.me/6285892808511" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 45 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 45</h4>
<p>Suhermanto, M.H</p>
</th>
<th>
<a href="https://wa.me/6281314142900" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 46 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 46</h4>
<p>Nazarudin Lathif, M.H.</p>
</th>
<th>
<a href="https://wa.me/6281283844558" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 47 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 47</h4>
<p>Tutang, MM</p>
</th>
<th>
<a href="https://wa.me/628121100021" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
<!-- Dosen 48 -->
<tr style="text-align: left; margin-top: 20px">
<th style="display: block; align-items: center">
<h4 style="font-weight: 400; font-size: small">Dosen 48</h4>
<p>Anton Sukamto, MTI</p>
</th>
<th>
<a href="https://wa.me/6282310044917" target="_blank"
><button class="btn btn-primary">Chat</button></a
>
</th>
</tr>
</table>
</article>
</div>
</main>
<footer>© 2023, Contact Stuff by Kyriten</footer>
<script>
feather.replace();
document.querySelector(".nav-item").focus();
</script>
</body>
</html>