-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (104 loc) · 5.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="./assets/index.js"></script>
<meta charset="UTF-8">
<meta name="author" content="Vincent Budianto"/>
<meta name="description" content="Personal websites homepage" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Comfortaa:700">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Questrial">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="./assets/index.css">
<link rel="icon" href="./assets/image/icon.png" type="image/png">
<title>Vincent Budianto</title>
</head>
<body>
<div id="particles" class="particles"></div>
<div id="loading">
<div id="spinner"></div>
</div>
<div id="navbar" class="animated slideInDown" style="animation-delay:1.8s;">
<div id="links">
<button class="navigation" href="#header">Home</button>
<a class="navigation" href="./gitfolio/">GitFolio</a>
</div>
<div id="links">
<button class="navigation" id="mark_experience" href="#experience" style="display: none;">Experience</button>
<button class="navigation" id="mark_projects" href="#projects" style="display: none;">Projects</button>
<button class="navigation" href="#about">About</button>
</div>
</div>
<div id="content">
<center>
<div id="header" class="animated fadeIn" style="animation-delay:1.8s;">
<div id="title">~~~ 明日方舟 ~~~</div><br>
</div>
<div id="middle">
<div id="typewriter" class="animated zoomIn" style="animation-delay:1.8s;">
<h1>Hi, my name is Vincent Budianto</h1>
</div>
</div>
</center>
<div id="experience">
<h1>Experience</h1>
<div class="experience">
<div class="cards">
</div>
</div>
</div>
<div id="projects">
<h1>Projects</h1>
<div class="project">
<div class="carousel">
</div>
</div>
</div>
<div id="about">
<h1>About</h1>
<div class="profile">
<div id="profile_img"></div>
<div id="profile_desc">
Hello, I’m Vincent. Welcome to my personal websites.
</div>
</div>
<div id="social">
<div>
Find me at :
</div>
<a href="mailto:[email protected]">
<i class="btn_social fas fa-envelope"></i>
[email protected]
</a>
<a href="https://github.com/vincentbudianto" target="_blank">
<i class="btn_social fab fa-github"></i>
vincentbudianto
</a>
<a href="https://www.linkedin.com/in/vincentbudianto" target="_blank">
<i class="btn_social fab fa-linkedin-in"></i>
vincentbudianto
</a>
<a href="https://www.instagram.com/vincent_vb" target="_blank">
<i class="btn_social fab fa-instagram"></i>
vincent_vb
</a>
<a href="https://www.facebook.com/vincent.budianto" target="_blank">
<i class="btn_social fab fa-facebook"></i>
vincent VB
</a>
<a href="https://gitlab.com/vincentbudianto" target="_blank">
<i class="btn_social fab fa-gitlab"></i>
vincentbudianto
</a>
</div>
</div>
</div>
</body>
</html>