-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
615a00a
commit 2a07fc8
Showing
1 changed file
with
129 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
<!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://paypal.me/">Donate</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
<div class="content" id=""> | ||
<div id="bg"></div> | ||
<div class="social"> | ||
<a href="https://discord.gg/" id="discord" target="_blank" class="icon"> | ||
<i class="fab fa-discord"></i> | ||
</a> | ||
<a href="https://www.instagram.com//" id="instagram" target="_blank" class="icon"> | ||
<i class="fab fa-instagram"></i> | ||
</a> | ||
<a href="https://www.youtube.com/channel/" id="youtube" target="_blank" class="icon"> | ||
<i class="fab fa-youtube"></i> | ||
</a> | ||
<a href="https://github.com/" id="github" target="_blank" class="icon"> | ||
<i class="fab fa-github"></i> | ||
</a> | ||
</div> | ||
<div class="text"> | ||
<h1 class="sans serif">arabu</h1> | ||
<p class="paragraph">Newbie 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 new into coding so i tried my best.</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="5" class="highlight purecounter">1</p><span class="stats-description">Projects</span> | ||
</div> | ||
|
||
<div class="stats-item"> | ||
<p data-purecounter-start="0" data-purecounter-end="7" class="highlight purecounter">2-3</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> | ||
<script src="https://cdn.jsdelivr.net/npm/@srexi/purecounterjs/dist/purecounter_vanilla.js"></script> | ||
<script>nerWidth > 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/r83/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> |