Othniel2471 / portfolio-mv

This is my portfolio site with dummy projects for now, i'll be updating it as i build projects.The website was built using vanilla js and css

Home Page:https://othniel2471.github.io/portfolio-mv/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Portfolio Site

πŸ“— Table of Contents

πŸ“– [Portfolio-site]

[Portfolio-site] This is a simple portfolio site, that is simple and yet elegant.

πŸ›  Built With

Client

Key Features

-shows my portfolio -has a contact form -has a download button for my resume -it's a responsive site

  • [Demo on what is linters and how it works]

(back to top)

πŸ’» Getting Started

Creating your first "Hello-microverse" project

To get a local copy up and running, follow these steps.

Prerequisites

In order to run this project you need:

-A Git hub account
-Node JS
-Visual Studio Code or any other code editor of your preference
-web browser

Setup

Clone this repository to your desired folder:

Install Linters

You can find linters for most of the programming languages, e.g. Rubocop for Ruby or ESLint for JavaScript.

Also, there are many ways you can integrate a linter in your workflow:

-text editor plugin
-GitHub Actions
-GitHub apps

Set up Linters

Note: The npm package manager is going to create a node_modules directory to install all of your dependencies. You shouldn't commit that directory. To avoid that, you can create a .gitignore file and add node_modules to it:

.gitignore

node_modules/

Web Hint

This is a customizable linting tool that helps you improve your site's accessibility, speed, cross-browser compatibility, and more by checking your code for best practices and common errors.

NOTE: If you are using Windows, make sure you initialize npm to create package.json file.

npm init -y
  1. Run
    npm install --save-dev hint@7.x
    
    how to use npm: (https://docs.npmjs.com/downloading-and-installing-node-js-and-npm).
  2. Copy .hintrc to the root directory of your project.
  3. Do not make any changes in config files - they represent style guidelines that you share with your team - which is a group of all Microverse students.
  4. Run
    npx hint .
    
  5. Fix validation errors.

A mighty, modern linter that helps you avoid errors and enforce conventions in your styles.

  1. Run

npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x not sure how to use npm? Read this.

  1. Copy .stylelintrc.json to the root directory of your project.

  2. Do not make any changes in config files - they represent style guidelines that you share with your team - which is a group of all Microverse students.

If you think that change is necessary - open a Pull Request in this repository and let your code reviewer know about it. 4. Run npx stylelint "*/.{css,scss}" on the root of your directory of your project.

  1. Fix linter errors.

  2. IMPORTANT NOTE: feel free to research auto-correct options for Stylelint if you get a flood of errors but keep in mind that correcting style errors manually will help you to make a habit of writing a clean code!

(back to top)

Loom-Walkthrough

(back to top)

πŸ‘₯ Authors

πŸ‘€ Author

(back to top)

πŸ”­ Future Features

  • [hamburger-menu]

(back to top)

🀝 Contributing

Contributions, issues, and feature requests are welcome!

Feel free to check the issues page.

(back to top)

⭐️ Show your support

If you like this project, kindly leave a comment below and share it with someone who enjoys coding! And also give it star, and follow me on github for more. Keep going!

πŸ™ Acknowledgments

I would like to thank Microverse for helping out with this project

(back to top)

πŸ“ License

This project is MIT licensed.

(back to top)

About

This is my portfolio site with dummy projects for now, i'll be updating it as i build projects.The website was built using vanilla js and css

https://othniel2471.github.io/portfolio-mv/


Languages

Language:CSS 45.6%Language:JavaScript 29.9%Language:HTML 24.5%