All Projects → siddhi-244 → Embellish

siddhi-244 / Embellish

Licence: MIT License
This repository contains different styled components in html,css,js,jquery which can be used in any website.

Programming Languages

HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects

Projects that are alternatives of or similar to Embellish

HACKTOBERFEST2021 INSPIRATION
😎A Hacktoberfest-2021 Contribution Repository For Beginners😎...Simplest Repo for Beginners👨‍💻👨‍💻👨‍💻...Add your Profile Details, Photo and Inspirational Quote 🙌🙌🙌& There you go to do your first PR❤❤❤
Stars: ✭ 30 (-6.25%)
Mutual labels:  hacktoberfest2021
rails-starter-template
Opinionated Rails starter template using esbuild, tailwindcss, postgresql and hotwired.
Stars: ✭ 21 (-34.37%)
Mutual labels:  hacktoberfest2021
theportfolio
Portfolio for Everyone!
Stars: ✭ 16 (-50%)
Mutual labels:  hacktoberfest2021
Tauros
Um bot para Discord com diversas funções e dashboard para configuração!
Stars: ✭ 27 (-15.62%)
Mutual labels:  hacktoberfest2021
Microsoft-Udacity-ML-scholarship
Just give your best shot!
Stars: ✭ 64 (+100%)
Mutual labels:  hacktoberfest2021
markdown-tweet-scheduler
Schedule daily tweets from markdown files in your repo, posted via github actions.
Stars: ✭ 49 (+53.13%)
Mutual labels:  hacktoberfest2021
NYTimes-Compose
An offline-first application in Jetpack Compose with MVVM architecture, representing a minimalistic implementation of Top Stories API.
Stars: ✭ 98 (+206.25%)
Mutual labels:  hacktoberfest2021
domonic
Create HTML with python 3 using a standard DOM API. Includes a python port of JavaScript for interoperability and tons of other cool features. A fast prototyping library.
Stars: ✭ 86 (+168.75%)
Mutual labels:  hacktoberfest2021
Hacktoberfest2021
This is repo to create some pull requests and completing hacktoberfest2021 easily. All request will be accepted. Genuine Pull Request will promoted also. #hacktobefest #hacktobefest2021 #hacktobefest-accepted
Stars: ✭ 22 (-31.25%)
Mutual labels:  hacktoberfest2021
awesome-hacktoberfest-plant-a-tree
Will you choose the ✨ Hacktoberfest t-shirt ✨ but don't want to stop contributing to the environment and a sustainable future? Find an organization here so you can plant a tree! 🌱
Stars: ✭ 30 (-6.25%)
Mutual labels:  hacktoberfest2021
football-team-flags
Flags from national teams made with css 🏳
Stars: ✭ 19 (-40.62%)
Mutual labels:  hacktoberfest2021
ML-Reserve
An Open-Source repository where students could showcase their skills by contributing their ML and DL projects!
Stars: ✭ 15 (-53.12%)
Mutual labels:  hacktoberfest2021
Stress-master
Website to promote mental and physical health among all ages through proper meditation and diet.
Stars: ✭ 23 (-28.12%)
Mutual labels:  hacktoberfest2021
php-cron-expr
Ultra lightweight, Dependency free and Super Fast Cron Expression parser for PHP
Stars: ✭ 42 (+31.25%)
Mutual labels:  hacktoberfest2021
designtodevelopment
This repository is all about converting design inspirations into code.
Stars: ✭ 135 (+321.88%)
Mutual labels:  hacktoberfest2021
Daily-Coding-DS-ALGO-Practice
A open source project🚀 for bringing all interview💥💥 and competative📘 programming💥💥 question under one repo📐📐
Stars: ✭ 255 (+696.88%)
Mutual labels:  hacktoberfest2021
fludget
Learn Flutter on Flutter! A widget directory with implementation samples!
Stars: ✭ 26 (-18.75%)
Mutual labels:  hacktoberfest2021
gateway-mt
Storj edge services (including multi-tenant, S3 compatible server to interact with the Storj network)
Stars: ✭ 18 (-43.75%)
Mutual labels:  hacktoberfest2021
gqlalchemy
GQLAlchemy is a library developed with the purpose of assisting in writing and running queries on Memgraph. GQLAlchemy supports high-level connection to Memgraph as well as modular query builder.
Stars: ✭ 39 (+21.88%)
Mutual labels:  hacktoberfest2021
Automatic-attendance-management-system
ROLLCALL an automatic and smart attendance marking and management system which uses Microsoft Azure’s Cognitive service at its core to create a system that could make sure that no human intervention is required and provides government the ability to monitor the attendance of the schools and helps the government officials in mark fake schools.
Stars: ✭ 44 (+37.5%)
Mutual labels:  hacktoberfest2021

About Embellish -

hacktober logo repo sample 2

Forks Stars

GitHub issues GitHub PRs

You can join our discord

Link to discord

  • Having a designed component in css? Want to flaunt it ? Do you want other people to use your component? Here we are. Contribute your component to Embellish.
  • Embellish is a collection of awesome designed components or animations or components which can be added to any website to enhance the UI of your website.

🛠️ Technology Stack

HTML CSS Javascript


📜 Instructions to follow while Contributing

  • Make sure that with every design/ component should be added to a separate folder.
  • Every folder should have its own README.md file where instructions to setup environment should be there and a demo video in the form of a gif should be added. Refer to the README Template to make the README for the component you add.
  • Always update the table of contents in the parent folder where the new component is added.
  • Whether you are adding an animation or a design component or any other code, make sure to include all the additional scripts and CDN's within the file/ folder itself and with addequate documentation as required. The code must be extremely simple to understand such that it is ready for immediate use in some project.
  • Make sure to follow the Code of Conduct and be respectful towards others while contributing to the project.

How to contribute?

If you're not comfortable with command line, here are tutorials using GUI tools. If you don't have git on your machine, install it.

fork this repository

1. Fork this repository.

2. Clone your forked copy of the project.

git clone  https://github.com/<your_name>/Embellish.git

3. Navigate to the project directory 📁 .

cd Embellish

4. Add a reference(remote) to the original repository.

git remote add upstream https://github.com/siddhi-244/Embellish

5. Check the remotes for this repository.

git remote -v

6. Always take a pull from the upstream repository to your master branch to keep it at par with the main project(updated repository).

git pull upstream main

7. Create a new branch.

git checkout -b <your_branch_name>

8. Perform your desired changes to the code base.

9. Track your changes✔️ .

git add .

10. Commit your changes .

git commit -m "Relevant message"

11. Push the committed changes in your feature branch to your remote repo.

git push -u origin <your_branch_name>

12. To create a pull request, click on compare and pull requests. Please ensure you compare your feature branch to the desired branch of the repository you are supposed to make a PR to.

13. Add appropriate title and description to your pull request explaining your changes and efforts done.

14. Click on Create Pull Request.

15 Voila! You have made a PR to the Embellish. Sit back patiently and relax while your PR is reviewed

Note -

  • Please follow best code formatting and linting practices to assure good code quality. You should use tools such as Prettier or Eslint for thy purpose.

Project Maintainer & Admin

Siddhi Bhanushali

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].