This repository contains the code snippets from the slides as well as the starter files and solutions to the exercises we will go over in class.
- HTML
- Accessibility
- CSS
- Bootstrap
- JavaScript
- jQuery
- Node
Each of the topics above will be organized in a folder that contains the following:
examples/
- This folder will include the code snippets from the slidesexercises/
- These are the starter files for exercises you should complete prior to attempting the homework. Instructions and screenshots for the exercises are available in the_<topic>.md
file.solutions/
- All the solutions to the exercises above are in this folder. Additionally, there are video walk-throughs of each solution on MediaLab.
-
Fork the repository in GitHub.
-
Clone the forked repository.
$ git clone https://github.com/student/webdev-examples webdev-examples
- Navigate into the newly created
webdev-examples
folder and add another remote
$ git remote -v
origin https://github.com/student/webdev-examples.git (fetch)
origin https://github.com/student/webdev-examples.git (push)
$ git remote add examples https://github.com/caterinasworld/webdev-examples.git
$ git remote -v
origin https://github.com/student/webdev-examples.git (fetch)
origin https://github.com/student/webdev-examples.git (push)
examples hhttps://github.com/caterinasworld/webdev-examples.git (fetch)
examples https://github.com/caterinasworld/webdev-examples.git (push)
- If you want to update any files in your remote, push those files to the origin remote.
$ git push -u origin main
- If there are any new examples to download, pull those files from the 'examples' remote.
$ git pull examples main