Skip to content

raghukamma/webdev-examples

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Intro to Web Development - Class Examples

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.

Topics Covered

  • 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 slides
  • exercises/ - 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.

Setting Up This Repo

  1. Fork the repository in GitHub.

  2. Clone the forked repository.

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

About

webbed-examples

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 71.3%
  • CSS 25.5%
  • SCSS 3.2%