-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
82 lines (75 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="res/favicon.svg">
<title>Progate Mini Projects | Mfc Website</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.1/css/all.min.css">
<link rel="stylesheet" href="res/style.css">
</head>
<body>
<main>
<h1>Progate Mini Projects</h1>
<p>
Ini adalah website repository dari kumpulan proyek kecil individu dari komunitas Progate Indonesia,
dikerjakan oleh <a href="https://mf-chan.com">Faizal Chan.</a>
</p>
<hr>
<table>
<tr>
<td>Proyek 01 part 01 : Google SSO Login Screen</td>
<td><a href="project/01-01/index.html"><i class="fas fa-external-link-alt fa-fw"></i></a></td>
</tr>
<tr>
<td>Proyek 01 part 02 : Dashboard (1)</td>
<td><a href="project/01-02/dashboard.html"><i class="fas fa-external-link-alt fa-fw"></i></a></td>
</tr>
<tr>
<td>Proyek 01 part 03 : Dashboard (2)</td>
<td><a href="project/01-03/dashboard.html"><i class="fas fa-external-link-alt fa-fw"></i></a></td>
</tr>
<tr>
<td>Proyek 01 part 04 : Dashboard (3)</td>
<td><a href="project/01-04/dashboard.html"><i class="fas fa-external-link-alt fa-fw"></i></a></td>
</tr>
</table>
<hr>
<table>
<tr>
<td>Proyek 02 part 01 : Social Media Landing Page</td>
<td><a href="project/02-01/index.html"><i class="fas fa-external-link-alt fa-fw"></i></a></td>
</tr>
<tr>
<td>Proyek 02 part 02 : Deteksi Dark Mode Otomatis</td>
<td><a href="project/02-02/index.html"><i class="fas fa-external-link-alt fa-fw"></i></a></td>
</tr>
</table>
<hr>
<table>
<tr>
<td>Proyek 03 : Jan-Ken Game</td>
<td><a href="project/03/index.html"><i class="fas fa-external-link-alt fa-fw"></i></a></td>
</tr>
</table>
<hr>
<a href="https://progate.com" target="_blank">
<img src="res/progate.png" alt="Progate">
</a>
<p class="footer">
Lisensi <a href="https://opensource.org/licenses/MIT" target="_blank">MIT</a> <span>|</span>
<a href="https://mf-chan.com">Mfc</a> ©
<script>
if (new Date().getFullYear() > 2020) {
document.write('2020 - ' + new Date().getFullYear());
} else {
document.write(new Date().getFullYear());
}
</script>
</p>
</main>
<a href="https://tinyurl.com/ProgateID" target="_blank" class="ninjaken"
title="Ikuti Ninja Ken ke komunitas Progate Indonesia yuk!"></a>
</body>
</html>