This repository contains exercises for CodeYourFuture students learning HTML, CSS and Git commands.
You will be working on a messaging application in these exercises. Follow these steps to begin working on the exercises.
First, you need to create your own copy of these exercises. We call this a "fork". Follow these steps to create your fork.
Next, you need to download your fork so that you have the files on your computer. Follow these steps to clone your fork. Open your Terminal and navigate to your directory for CodeYourFuture course work.
cd <your-course-directory>
Run the following command in your terminal to clone this repository to your computer. Where it says <url>
, you should paste the URL of your fork. Hint: It's copied to your clipboard, so you can paste it in.
git clone <url>
For example, if your fork's URL is git@github.com:***/html-css-git-exercises.git
, the command would be:
git clone git@github.com:***/html-css-git-exercises.git
Next, navigate to the repository's directory and open your code editor.
cd html-css-git-exercises
code .
When you're done, you should see your code editor with the files open on the left, like the following screenshot.
Before you can start the exercises, you must install all of the code necessary to run the exercises. Open the Terminal and run the following command.
npm install
Carefully read the messages that appear. Are there any errors? If so, please ask a mentor for help.
To work on the first exercise, run the following command in the Terminal.
npm run 1
This will launch the sample website for the first exercise in your browser.
Now go back to your code editor. Open the first exercise in the week-1
directory and find the readme.md
file.
Read the instructions in the file you just opened. Follow the steps to complete the exercise.
When you have finished the first exercise, you can begin the next one. To do this, go to the Terminal and type CTRL
+C
to stop running the first exercise.
To run another exercise, run the following code with the correct number of that exercise:
npm run 2
When you reach the final exercise, you'll be asked to submit a pull request. When you've finished that task, post in your Slack channel to let the mentors know that you have finished.