HTML5 CSS3 JavaScript BootStrap

Live Preview

Download .zip

🚀 Quick Start :

Clone / Forked Repository

$ git clone https://github.com/<your-github-username>/Cool-Front-End-Templates

Creating a new branch (IMP)

$ git branch <name_of_branch>
$ git checkout -b <name_of_branch>

Keep your cloned repo up-to date by pulling from upstream (this will also avoid any merge conflicts while committing new changes)

git pull origin main

Contribute

Make relevant changes according to the issue that you were assigned on. Contribute in any way you feel like :)

Committing and Pushing

Once you have modified an existing file or added a new file to the project, you can add it to your local repository, which we can do with the git add command.

git add .
git commit -m "useful commit message"
git push origin <branch-name>

CONTRIBUTING A NEW TEMPLATE?

Please add here to these guidelines based on Code of Conduct

  1. Create a folder with the name of your frontend template

  2. Start building inside your folder with an entry file called index.html and after building, attach an image named "preview.png" within the folder root which represents the preview image of your template

  3. Go into the style_link.json file and add an object corresponding to your project in the following format:

    {
  
      "name": "Name-of-folder-in-exact-case-used-in-naming",
      "link": "Name-of-folder-in-exact-case-used-in-naming/index.html"
  
    },

Important to note:

If the folder name has white spaces e.g "My Project", the object should be:

    {
  
      "name": "My Project", (not "my project" or "My project" or "My-project")
      "link": "My%20Project/index.html" (not "My Project/index.html" or "My project/index.html"
  
    },

Note: The name key is case sensitive and the link key is white space sensitive in the json object so if you have white spaces in the initial name of your folder, replace space with "%20" in the json link but if there are no white spaces like in the case of "ABlogPage" or "Form", use the exact name of the project

If the folder name has no white spaces e.g "My-project", the object should be:

    {
  
      "name": "My-project",  (not "my-project" or "My-Project" or "My Project")
      "link": "My-project/index.html"  (not "My%20project/index.html" or "My-Project/index.html")
  
    },

✨ Contributors

Thanks go to these Wonderful People 👨🏻‍💻

🚀 Contributions of any kind are welcome!