This is my personal website/porfolio.
My porfolio website is deployed by Github Pages.
Please see my website at the following URL: https://jesuispius.github.io/porfolio.html
Since this website is a single-page website with different sections on the page.
So, to run/view this project, we can simply open the porfolio.html
file on a web browser.
My website is built by using HTML, CSS, and JavaScript.
jesuispius.github.io/
├─ css/
│ ├─ resume.css
│ ├─ project.css
│ ├─ contact.css
│ ├─ style.css
│ ├─ intro.css
│ ├─ about.css
├─ js/
│ ├─ resume.js
│ ├─ backToTop.js
│ ├─ navbar.js
├─ porfolio.html
Besides, I also use some Bootstrap CSS Framework’s classes.
This is how I call Bootstrap in porfolio.html:
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" />
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"></script>
In addition, I use some awesome SVG shapes from Haikei website - a web app to generate unique SVG shapes, backgrounds for free.
Using a built-in animations library - AOS, to animate the elements on scroll more smoothly.
This is how I call AOS library and initialize it in porfolio.html:
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script>
AOS.init({
once: true,
duration: 1500,
});
</script>