An open API service indexing awesome lists of open source software.

https://github.com/saehri/frontendmentor-space-tourism-website

This is a solution to the Space tourism website challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
https://github.com/saehri/frontendmentor-space-tourism-website

Last synced: 5 months ago
JSON representation

This is a solution to the Space tourism website challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Awesome Lists containing this project

README

        

# Frontend Mentor - Space tourism website solution

> This is a solution to the [Space tourism website challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/space-tourism-multipage-website-gRWj1URZ3). Frontend Mentor challenges help you improve your coding skills by building realistic projects.

My intentions when creating this repository is to create a beginner friendly place for programmer who want to learn how to code, use GitHub, and collaborate with others. So if you think you are one, do not hesitate to fork this repository and check out the [issue](https://github.com/saehri/frontendmentor-space-tourism-website/issues) tab.

## How to Collaborates

> This guide is the simplified version of the guide in [first contribution](https://github.com/firstcontributions/first-contributions) repository. If you prefer more robust explanation you can view the repository [here](https://github.com/firstcontributions/first-contributions).

### 🍴 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, then on SSH tab and then click the copy to clipboard icon.

Open a terminal and run the following git command:

```
git clone https://github.com/saehri/frontendmentor-space-tourism-website.git
```

### Create a Branch

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

```
cd first-contributions
```

Now create a branch using the git switch command:

```
git switch -c "tag"/"descriptions"
```

For example:

```
git switch -c feature/add-homepage
```

> Make sure you are working inside the branch you just created. (It's a good practice to do it hehe)

### Make Necessary Changes and Commit Those Changes

Please review the issue you are trying to solve (see issue page) to understand better about your task.

### Push Your Changes to Github

Push your changes using the command git push:

```
git push -u origin branch-name
```

replacing `your-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.