forked from randyviandaputra/my-profile
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
92 lines (88 loc) · 2.92 KB
/
about.html
File metadata and controls
92 lines (88 loc) · 2.92 KB
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="assets/css/styles.css" rel="stylesheet">
<link href="assets/vendor/fontawesome/css/all.min.css" rel="stylesheet">
<title>About Me</title>
</head>
<body>
<div class="container">
<header class="header">
<div class="nav">
<div class="brand">
<a href="index.html">
<h3>Randy Vianda Putra</h4>
</a>
</div>
<div class="nav-list">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
</ul>
</div>
</div>
</header>
<div class="about">
<div class="avatar">
<img src="assets/images/randy.jpg" width="150">
</div>
<div class="wrapper">
<div class="description">
<div class="name">
<h1>Randy Vianda Putra</h1>
</div>
<div class="job">
<h4>LEAD FRONTEND ENGINEER</h4>
</div>
<div class="separator"></div>
</div>
<div class="information">
<div class="list-info">
<div class="icon"><i class="fab fa-facebook"></i></div>
<div class="text">
<a href="https://www.facebook.com/aweutist">Randy Vianda Putra</a>
</div>
</div>
<div class="list-info">
<div class="icon"><i class="fab fa-linkedin"></i></div>
<div class="text">
<a href="https://www.linkedin.com/in/randyviandaputra/">Randy Vianda Putra</a>
</div>
</div>
<div class="list-info">
<div class="icon"><i class="fab fa-github"></i></div>
<div class="text">
<a href="https://github.com/randyviandaputra">Randy Vianda Putra</a>
</div>
</div>
</div>
</div>
</div>
<div class="detail-info">
<div class="bio">
<h3>About me</h3>
<p>I’m Randy Vianda Putra, I'm Open Sourcerer, Frontend Enthusiast & Technology Eater. Currently i live in
Bandung, Indonesia. now working at WorkLifeBeyond as Lead Frontend Engineer & Instructor at Cilsy. My
passionate is about Javascript, Go, GraphQL, React, React Native, VueJS and many more.
</p>
<p>
I have some repository hopefully useful and can learn. If you want to know more just follow my github account.
</p>
<h3>Around the web</h3>
<ul>
<li>Email: modulloe@gmail.com
</li>
<li>Telegram: @randyvp
</li>
</ul>
</div>
</div>
<footer>
<p>© Build with ♥ and Coffee by <a href="https://randy.js.org/">Randy Vianda Putra</a></p>
</footer>
</div>
<script src="assets/vendor/fontawesome/js/all.min.js"></script>
</body>
</html>