Want to add your own site? We'd love you to! Follow the instructions below to make it happen. Feel free to ask for help at any point if you are unsure of any of the steps. We are here to help!
You will need to fork this repository (repo) so you can begin editing the code. Head over to the JuniorDev HacktoberFEST GitHub repo and click the Fork button on the top right hand side of the page.
Once the fork is copied to your github, use your preferred way to clone the repo locally. I will assume you are using terminal, in which case run a command like follows:
git clone
https://github.com/~your-github-here~/hacktober-fest-halloween-graffiti.git
Once the repo is forked, go into the folder by running a command like
cd hacktober-fest-halloween-graffiti
Now that you are inside the repo you will need to create your own branch to work on. This ensures your work and everyone else's work will be done separately. First decide on your branch name, then type something like:
git checkout -b [your-branch-name]
Now you can begin your work in your IDE of choice...
To start building your own page, create a folder under participants as yourFirstName-yourLastName. It is best to not use spaces and instead use a dash to separate any words.
Then inside this folder create a new index.html file. Once you've created your file, paste in some basic HTML that will get you started, perhaps something like:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Your name here</title> </head> <body> </body> </html>
Much like the previous step, create a styles.css. You can then link it in your index.html file inside the <head> element with something like:
<link rel="stylesheet" href="styles.css">
The rest is up to you, create until you're completely out of ideas!
Once you've finished, add yourself to the index.html (this file you are reading) above in the Participants section!
Then it's time to create a PR to your own fork. To do this go to the Pull Request section in Github.
Then click the New Pull Request button and add some info about your pull request and give it a funky name.
Merge when you are happy with it, feel free to get a friend, mentor or someone on your table to review it.
Once you have merged your PR to your fork its time to get this live on JuniorDev! To do this repeat steps 9 && 10 - then move onto step 13!
Finally click the link that reads Compare across forks
Check it, submit it and then congrats you have sucessfully completed,
not one but
TWO Pull Requests to
#Hacktoberfest2019!