Book
Submodule 3.2: Getting Started with Bootstrap
Submodule 3.2: Getting Started with Bootstrap
Completion requirements
View
- Setting up the Project Folder
- Downloading Bootstrap
- Getting your Web page Bootstrap ready
- Bootstrap typography
Initialize a Git repository
- Open the folder leChocolat in your editor, set up a "
.gitignore
" file with the contents: node_modules and save it! - Next, initialize a Git repository in the project folder by typing "
git init
". - Check your Git repository's status "
git status
". - Add the files to the staging area "
git add .
" - Commit the current staging area to your Git repository '
git commit -m "Initial Setup"
'.