-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (68 loc) · 2.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Portfolio - by i4.GS</title>
<link rel="stylesheet" href="./assets/css/style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
</head>
<body>
<div id="particles-js"></div>
<div id="wrapper">
<div id="navbar">
<header>
<div class="logo"><a href="./">i4.GS</a></div>
<nav>
<ul class="nav_links">
<li class="active"><a href="./">Home</a></li>
<li><a href="./About/">About</a></li>
<li><a href="./Skills/">Skills</a></li>
<li><a href="./Projects/">Projects</a></li>
<li><a href="./Education/">Education</a></li>
<li><a href="./Experience/">Experience</a></li>
</ul>
</nav>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</header>
</div>
<div id="content">
<section class="home">
<img class="avatar" src="./assets/images/avatar.jpg" alt="avatar">
<div class="home-content">
<h1>Hey, I'm Bei</h1>
<h3>Student @ Sunway College</h3>
<p>Welcome to my personal portfolio. This portfolio is designed by my own, and includes sections like
<b>About</b>, <b>Skills</b>, <b>Projects</b>, and more. By the way, you can find this portfolio's open-source code
on my GitHub, which is linked in the footer at the bottom. See you!</p>
<div class="btn-box">
<a href="https://t.me/vten2u" target="_blank" rel="noopener noreferrer">CONTACT ME</a>
</div>
</div>
</section>
</div>
<div id="footer">
<footer>
<p>© 2024 Made by  <a href="https://www.i4.gs" target="_blank"
rel="noopener noreferrer">i4.GS</a>   |   Open Source Project: <a
href="https://github.com/i4GS/PersonalPortfolio" target="_blank"
rel="noopener noreferrer"> Github</a></p>
</footer>
</div>
</div>
<script>
fetch('particlesjs-config.json')
.then(response => response.json())
.then(config => {
particlesJS('particles-js', config);
})
.catch(error => console.error('Error loading particles.js config:', error));
</script>
<script src="./assets/js/script.js"></script>
</body>
</html>