-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (56 loc) · 1.86 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
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="res/favicon.png" type="image/x-icon">
<title>Ninja Ken | Social Link</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto&display=swap">
<link rel="stylesheet" href="./res/style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-M8WYL8K0MM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-M8WYL8K0MM');
</script>
</head>
<body>
<aside>
<div class="warning-container">
<h2>Peringatan</h2>
<p>Belajar di Progate sangat mudah dan menyenangkan!</p>
<a href="#" onclick="goBack()">Kembali</a>
<a href="#" onclick="closeWarning()">Oke, lanjutkan</a>
</div>
</aside>
<header>
<div class="profile-container">
<img src="./res/profile.png" alt="Foto profil" title="Ninja Ken">
</div>
<h1>Ninja Ken</h1>
<p>Belajar programming mudah dan gak ribet. #ambillangkahmu</p>
</header>
<section>
<ul>
<li>
<a href="https://web.facebook.com/ProgateID/" target="_blank" title="Facebook">Facebook</a>
</li>
<li>
<a href="https://www.instagram.com/progateid/" target="_blank" title="Instagram">Instagram</a>
</li>
<li>
<a href="https://twitter.com/progateID/" target="_blank" title="Twitter">Twitter</a>
</li>
<li>
<a href="https://tinyurl.com/ProgateID" target="_blank" title="Discord">Discord</a>
</li>
</ul>
</section>
<footer>
<a href="https://progate.com" target="_blank" title="Progate"></a>
</footer>
<script src="./res/script.js"></script>
</body>
</html>