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
- Sass
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>.mdfile.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 class-exercises- Navigate into the newly created
class-exercisesfolder 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 upstream 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)
upstream hhttps://github.com/caterinasworld/webdev-examples.git (fetch)
upstream https://github.com/caterinasworld/webdev-examples.git (push)- Push any files you update to the origin remote.
$ git push -u origin main- Pull any new files from the upstream remote.
$ git pull upstream main