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

https://github.com/sinhaparth5/mcdwebsite

Headington McDonald's Website
https://github.com/sinhaparth5/mcdwebsite

menu order

Last synced: 11 days ago
JSON representation

Headington McDonald's Website

Awesome Lists containing this project

README

          

# Headington McDonald's Private Website T

![Alt mcdLogo](symbol-McDonalds.jpg)

*Step to pull and use the website for testing or for further inprovememt purposes*

Pull the repository on your code editor, eg. VS Code, Fleet, Sublime Text, etc.

On VS Code use Live Server extention to deploy the website \n open the index.html file to deploy the website.

_Steps to push the changed code to the repository_

Step 1: Check the file which are changed(not mandatory, but good practice to see and get the path of the changed file)

```Bash
git status
```

Step 2: Add the files to git which are changed

Adding individual file:
```Bash
git add
```

Adding all the files shown in git status:
```Bash
git add --all
```

Step 3: Commit the changes

```Bash
git commit -m ""
```

Step 4: Push the changes to the repository

```Bash
git push
```