Skip to content

basic frontend starter template: html, css, jquery

Notifications You must be signed in to change notification settings

sf-wdi-25/blank_template

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

BLANK_TEMPLATE

Basic frontend template for projects using HTML, CSS, jQuery, and Bootstrap.

First make sure you're in the correct starting dir:

cd ~/dev

Next lets clone this down. Since you might use this more than once, you should rename it. Try renaming when you clone by replacing your_project_name:

git clone CLONE_URL your_project_name

After you have cloned and renamed your repo, cd into the folder.

cd your_project_name

Next check your git remote origin.

git remote -v

It is pointing to the blank_template repo but you want it to point to your own repo. You need to remove the current remote and place your own in.

git remote remove origin

Next go to your Github page and make a new repo with the same name you just created locally. Don't click Initialize this repository with a README. Create Repo, then you will see two options, choose the second " push an existing repository from the command line" follow the instructions

git remote add origin your_github_project.git
git push -u origin master

About

basic frontend starter template: html, css, jquery

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 76.1%
  • CSS 15.0%
  • JavaScript 8.9%