Skip to content

Personal portfolio website where you can find all information about myself (including work experience, hobbies and contact form).

License

Notifications You must be signed in to change notification settings

martyna-zyskowska/website-portfolio

Repository files navigation

Website: Portfolio

Personal portfolio website where you can find all information about myself (including work experience, hobbies and contact form).

Table of Contents

General Info

The aim of the portfolio website is to provide all basic information about myself for the future employee.

Screenshots

portfolio_img portfolio_img2 portfolio_img3

Technologies

Project is created with:

  • HTML5
  • CSS3
  • JS ES6
  • PHP

Status

Project is: in progress

Code Examples

// 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;
}

Features

List of features ready and TODOs for future development

  • 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

To-do list:

  • "Music" section

Contributing

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

License

MIT License: Copyright (c) 2018 Martyna Zyskowska

Author

Martyna Zyskowska

About

Personal portfolio website where you can find all information about myself (including work experience, hobbies and contact form).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published