forked from CoderPopCat/coderpopcat.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (135 loc) · 5.24 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Portfolio</title>
<link href="assets/css/style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="assets/css/util.css">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<link rel="stylesheet" href="assets/css/navbar.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v6.0.0-beta2/css/all.css" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/scrollreveal.min.js"></script>
</head>
<body>
<nav id='nav' style="width: 100vw; backdrop-filter: blur(5px); box-shadow: inset 0 -1px 0 0 hsla(0,0%,100%,0.1)">
<div class="nav-container-custom nav-wrapper">
<div class="brand">
<span>
<strong class="shine" style="color: white; font-family: monospace; font-size: 30px">Portfolio</strong>
</span>
</div>
<div class="hamburger" style="padding-left: 23px;">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-list">
<li><a class="nav-link" data-scroll="#">Home</a></li>
<li><a class="nav-link" data-scroll="#about">About</a></li>
<li><a class="nav-link" target="_blank" data-scroll="#projects">Projects</a> </li>
<li><a class="nav-link" target="_blank" style="color: #007CF0" href="https://ko-fi.com/popcatdev">Donate</a>
</li>
</ul>
</div>
</nav>
<div class="content" id="">
<div id="bg"></div>
<div class="social">
<a href="https://popcat.xyz/server" id="discord" target="_blank" class="icon">
<i class="fab fa-discord"></i>
</a>
<a href="https://www.instagram.com/sharanpreet1124" id="instagram" target="_blank" class="icon">
<i class="fab fa-instagram"></i>
</a>
<a href="https://github.com/CoderPopCat" id="github" target="_blank" class="icon">
<i class="fab fa-github"></i>
</a>
</div>
<div class="text">
<h1 class="shine head">Zero Two.</h1>
<p class="paragraph">Frontend & Backend Developer.</p>
<button class="hero-button nav-link" data-scroll="#projects">Projects</button>
</div>
</div>
<section id="about" class="about">
<span class="line"></span>
<div class="section-label">
<div class="label-number">1</div>
</div>
<!-- <h4 class="about-title c-white">About</h4> -->
<div class="about-content d-flex align-center space-between row">
<div class="about-img">
<!-- <div class="about-light"></div> -->
<canvas id="canvas"></canvas>
</div>
<div class="about-text">
<h4 class="about-title c-white">About Me</h4>
<p class="about-description grey">I am a Full Stack Developer and a computer enthusiast. I have a good knowledge
of HTML, CSS, Javascript, Nodejs, Reactjs, MongoDB, Git, and more.</p>
</div>
</div>
</section>
<div class="stats">
<section class="statistics">
<div class="stats-container">
<div class="stats-item">
<p data-purecounter-start="0" data-purecounter-end="3" class="highlight purecounter">3</p><span
class="stats-description">Completed Commissions</span>
</div>
<div class="stats-item">
<p class="highlight">$<span data-purecounter-start="0" data-purecounter-end="212"
class="highlight purecounter">212</span></p><span class="stats-description">Donations received</span>
</div>
<div class="stats-item">
<p data-purecounter-start="0" data-purecounter-end="7" class="highlight purecounter">7</p><span
class="stats-description">Areas of Knowledge</span>
</div>
</div>
</section>
</div>
<section id="projects" class="projects">
<span style="background-image: linear-gradient(90deg,#7928ca,#ff0080);" class="line"></span>
<div class="section-label">
<div class="label-number project-label">2</div>
</div>
<h4 class="about-title c-white">Projects</h4>
<p class="about-description grey" style="font-size: 18px;">Projects I've Made :)</p>
<div class="project-content">
</div>
</section>
<footer>
<div class="footer-content">
<h3>Zero Two</h3>
<p>Created and Managed by Zero Two#7177</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@srexi/purecounterjs/dist/purecounter_vanilla.js"></script>
<script>
if (window.innerWidth > 600) {
new PureCounter({
selector: '.purecounter',
start: 0,
end: 100,
duration: 2,
delay: 10,
once: true,
repeat: false,
decimals: 0,
legacy: true,
filesizing: false,
currency: false,
separator: false,
});
}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r98/three.js"></script>
<script src="https://fariskassim.com/stage/rebel9/teaf/blob/v4/js/perlin.js"></script>
<script src="https://unpkg.com/@popperjs/core@2"></script>
<script src="https://unpkg.com/tippy.js@6"></script>
<script src="assets/js/projects.js"></script>
<script src="assets/js/particles.min.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>