forked from sethcottle/littlelink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (78 loc) · 4.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Page Information
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Ketmanto Wangsa</title>
<meta name="description" content="My Profile using LittleLink">
<meta name="author" content="Ketmanto Wangsa">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800&display=swap" rel="stylesheet">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton-auto.css">
<!-- Brand Styles -->
<link rel="stylesheet" href="css/brands.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/avatar.png">
<!-- Script for dark/white
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script>
function myFunction() {
var element = document.body;
element.classList.toggle("dark-mode");
}
</script>
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row">
<div class="column" style="margin-top: 10%">
<!-- Your Image Here -->
<img src="images/avatar.png" class="avatar" srcset="images/avatar@2x.png 2x" alt="My photo">
<!-- Title -->
<h1>Ketmanto Wangsa</h1>
<!-- Short Bio -->
<p>Hi, I am Ketmanto Wangsa. As a lifelong learner, I am passionate about bringing a high dedication and results-driven approach to every project.
In addition, I read books and code some stuff while pushing myself to the next level.
</p>
<p> Please find me on the multiple links below.</p>
<!-- Dark/Light Mode -->
<a class="button button-notion" onclick="myFunction()">
🌑 Dark/light mode☀️</a>
<br>
<!-- LinkedIn -->
<a class="button button-linked" href="https://www.linkedin.com/in/ketmanto-wangsa/" target="_blank" rel="noopener">
<img class="icon" src="images/icons/linkedin.svg" alt="LinkedIn Logo">LinkedIn</a>
<br>
<!-- GitHub -->
<a class="button button-github" href="https://github.com/Kwangsa19" target="_blank" rel="noopener">
<img class="icon" src="images/icons/github.svg" alt="GitHub Logo">GitHub</a>
<br>
<!-- Instagram -->
<a class="button button-instagram" href="https://www.instagram.com/k_wng19/" target="_blank" rel="noopener">
<img class="icon" src="images/icons/instagram.svg" alt="Instagram Logo">Instagram</a>
<br>
<a class="button button-default" href="mailto:ketmantowangsa@gmail.com" target="_blank" rel="noopener">
<img class="icon" src="images/icons/email.svg" alt="Email icon">Mail me</a>
<br>
<br>
<p>Build your own <a href="https://littlelink.io" target="_blank" rel="noopener">Links</a><br>
See <a href="privacy.html" target="_blank" rel="noopener">privacy</a>
<p>
</div>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>