Live Project : https://felizui.netlify.com
- Frontend: HTML,CSS,JS
- Version Control: Git and GitHub
- Hosting: Netlify
- Code Editor and tools: VS Code
✨ Welcome to Feliz UI ✨
- Overview
- Folder Structure
- UI of Website
- Contribution Guideline
Feliz UI is an open source styling Library, which helps Developers to use best styles and components, by using pre-defined classnames. Feliz UI helps you to quickly build your Dream Project, by focusing much on Functionality, because we take care of your Designs.
Copy the link given below and paste it in the head tag of your HTML, above all other style sheets.
Style your components by just adding class names to your HTML elements.
<link rel="stylesheet" href="https://felizui.netlify.app/styles/index.css">
├───assets │ └───images ├───Components │ └───Avatar ├───JS ├───pages └───styles
Landing Page | Documentation Page |
- Go to directory
$ cd Feliz-UI
- Start LocalHost Server
Open index.html with Live Server in VScode
To start contributing, follow the below guidelines:
1. Fork this repository.
2. Clone your forked copy of the project.
git clone https://github.com/ishitakeshawani/Feliz-UI.git
3. Navigate to the project directory 📁 .
cd Feliz-UI
4. Add a reference(remote) to the original repository.
git remote add upstream https://github.com/ishitakeshawani/Feliz-UI.git
5. Check the remotes for this repository.
git remote -v
6. Create a new branch.
git checkout -b <your_branch_name>
7. Perfom your desired changes to the code base.
8. Track your changes:heavy_check_mark: .
git add .
9. Commit your changes .
git commit -m "Relevant message"
10. Push the committed changes in your feature branch to your remote repo.
git push -u origin <your_branch_name>
11. To create a pull request, click on compare and pull requests
.
12. Add appropriate title and description to your pull request explaining your changes and efforts done.
13. Click on Create Pull Request
.
14 You did it! 🥳 Wait for your submission to be accepted and your PR to be merged.