All Projects β†’ Geeky-star β†’ Footer-and-Header-design-Challenge

Geeky-star / Footer-and-Header-design-Challenge

Licence: MIT license
Contribute your design in Footer and Header design templates using HTML, CSS, JavaScript.

Programming Languages

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

Projects that are alternatives of or similar to Footer-and-Header-design-Challenge

Vibranium
Web template for and by DSC chapters worldwide because we are a Wakanda of student developers and future technology leaders from all across the world. πŸŽ‰
Stars: ✭ 89 (+641.67%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Angular
A repositoy to learn and boost your Angular skills. It contains cheatsheet, code, articlues and all learning resources you need.
Stars: ✭ 49 (+308.33%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
HacktoberFest-21
A mentorship initiative to help beginners kickstarting their open-source journey by completing Hacktoberfest'21 challenge | Curated list of beginner-friendly issues for Hacktoberfest 2021 | Raise PR to add your issues
Stars: ✭ 27 (+125%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
react-bootcamp-notes
Bu repo Kodluyoruz Earlybird Front-End Talent Bootcamp boyunca aldığım tüm notları saklar.
Stars: ✭ 60 (+400%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Resources
No description or website provided.
Stars: ✭ 25 (+108.33%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
HackFest21
Only valid pull requests will be allowed. Use python only and readme changes will not be accepted.
Stars: ✭ 53 (+341.67%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
HealthBliss-Hacktoberfest2021
HealthBliss is a static responsive website which provides its users with good health reads on how to overcome anxiety, depression and bipolar disorders. Check the readme to know more.
Stars: ✭ 22 (+83.33%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
stopwatch
Stop watch using javascript
Stars: ✭ 18 (+50%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Leetcode-scripts
Repo for creating awesome leetcode solution scripts to make my panda smarter
Stars: ✭ 16 (+33.33%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
wazuh-puppet
Wazuh - Puppet module
Stars: ✭ 25 (+108.33%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Certificate-Generator-UI
This is the UI for an awesome Certificate Generator and this is a part of Hacktoberfest 2021.
Stars: ✭ 18 (+50%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
-HactoberFest2021-For All Beginers-
Raise Genuine PRs, Your PRs will be accepted, Star This Repo, You aren't allowed to Update README.md
Stars: ✭ 33 (+175%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
hacktoberfest2021
For Beginners, students and developers this is a great opportunity to learn and contribute to open source.
Stars: ✭ 79 (+558.33%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Dev-Essentials
A Chrome Extension, built to keep you updated with the latest happenings, upcoming contests and, new tech innovations.
Stars: ✭ 16 (+33.33%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
PracticeApp
A "must-have a look" project for newcomers in android.
Stars: ✭ 38 (+216.67%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
algorithmshacktoberfest2021
Some algorithms, than i need some help to complete !
Stars: ✭ 25 (+108.33%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
tempat-kontributor
Merupakan tempat bagi kalian untuk berkontributor bersama kami
Stars: ✭ 33 (+175%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
hacktoberfest 2021
This is a repository for anyone wishing to contribute to HacktoberFest 2021
Stars: ✭ 51 (+325%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
Hacktoberfest-2021
An Open Source repository to Teach people How to contribute to open sources.
Stars: ✭ 98 (+716.67%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021
stocktwits-sentiment
Stocktwits market sentiment analysis in Python with Keras and TensorFlow.
Stars: ✭ 23 (+91.67%)
Mutual labels:  hacktoberfest-accepted, hacktoberfest2021

Footer-and-Header-design-templates

Contribute your design in Footer and Header design templates using HTML, CSS, JavaScript

This repository is a collection of header and footer designs.

Why this Repository?

Creating beautiful header and footer designs for each web app from scratch is time consuming. This repository is to help developers to get beautiful designs within no time.

How you can contribute?

  • Fork this repository
  • Create a folder inside the main folder
  • Make all the files(html, css files) you code inside the folder you created
  • Create a text file inside your folder and write your name in it
  • Create pull request
  • And you are Done!

And yes, your contribution is done.

If you don't know how to start below are the steps you can follow:

How to start ? πŸŽͺ

If you don't have git on your machine, install it.

Fork this repository πŸš€

Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.

Clone the repository 🏁

Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.

Open a terminal and run the following git command:

git clone "url you just copied"

where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project). See the previous steps to obtain the url.

For example:

git clone https://github.com/Geeky-star/Footer-and-Header-design-Challenge

Create a branch βš“

Change to the repository directory on your computer (if you are not already there):

cd (filename)

Now create a branch using the git checkout command:

git checkout -b your-new-branch-name

For example:

git checkout -b dev_username

Make necessary changes and commit those changes 🚏

Do the necessary changes.

If you go to the project directory and execute the command git status, you'll see there are changes.

Add those changes to the branch you just created using the git add command:

git add .

Now commit those changes using the git commit command:

git commit -m "(Add your message here)"

replacing <Add your message here> with your message like "Initial commit".

Push changes to GitHub πŸͺ‚

Push your changes using the command git push:

git push origin <branch-name>

replacing <branch-name> with the name of the branch you created earlier.

Submit your changes for review 🚩

If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.

Now submit the pull request.

I will be merging all your changes into the master branch. You will get a notification email once the changes have been merged.

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].