Personal portfolio website where you can find all information about myself (including work experience, hobbies and contact form).
The aim of the portfolio website is to provide all basic information about myself for the future employee.
Project is created with:
- HTML5
- CSS3
- JS ES6
- PHP
Project is: in progress
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("bookmark").style.display = "block";
} else {
document.getElementById("bookmark").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
- You can easily navigate between different categories
- The site includes different sections:
- about section
- hobbies (including gallery)
- online resume (education, work experience, certificates)
- contact info and contact form
- "Music" section
Contributions to the project library are welcome. Please note the following guidelines before submitting your pull request:
- Follow JS coding standards
- Write tests for new functions and added featues
MIT License: Copyright (c) 2018 Martyna Zyskowska
Martyna Zyskowska