A project that provides the basic files and installations you need to start a Web Dev project
Hello World contains the necessary foundation files, allows you to ignore private files, demonstrates a proffessional commit style and has HTML/CSS linters preinstalled to check and notify for errors
HTML, CSS
A simple but static title banner displays on top of the webpage.
Link to the live display of this simple webpage.
To get a local copy up and running, follow these steps.
Clone the repository
git clone https://github.com/geekelo/Hello-World.git
And you are ready to begin your project
You should have Node and Git Installed
This project contains An HTML FILE (free to edit) - file to add html codes to give structure to your webpages A CSS FILE (free to edit) - file to style css codes to style your webpage A GIT IGNORE FILE (free to edit) - to hide personal or private files HTML/CSS LINTER FILES (should not edit) - Do not make changes AN EMPTY JAVASCRIPT FILE (free to edit)
To install linters, execute the following commands:
Initialize npm | ``` npminit -y ```
HTML | ``` npm install --save-dev hint@7.x ```
CSS | ```npm install --save-dev stylelint@13.x stylelint-scss@3.x stylelint-config-standard@21.x stylelint-csstree-validator@1.x ```
To run the linters, execute the following command and fix linter errors:
HTML | ``` npx hint . ```
CSS | ```npx stylelint "**/*.{css,scss}" ```
If you get a flood of errors keep in mind that linters guide you in writing a clean code!
Mention all of the collaborators of this project.
👤 Eloghene Otiede
- GitHub: @geekelo
- Twitter: @Geekelo_xyz
- LinkedIn: LinkedIn
Please give a ⭐️ to support your project
I would like to thank Microverse for inspiring this project
This project is MIT licensed.