Project 2 Setup

This video goes through each of the steps pretty quickly. If you want more detail about the steps, consider revisiting the initial walkthrough.

  1. Follow the instructions to connect Glitch and GitHub, using the following details:
  2. Before starting to write any HTML, you must first create a branch off the master branch. Name your new branch card-design.
  3. After you’ve created your new branch and are working on the card-design branch, add a new file named index.html
  4. Open the new index.html and, in your text editor, type an exclamation mark ! and press Tab.
    • This shortcut should create the default structure for your HTML document.
    • If, for whatever reason, this does not work for you, you can instead copy the HTML from this file and paste it into your index.html file.
  5. Create a new file named styles.css and create a link to it inside of your index.html file.
  6. Stage your changes to both files and make a commit (example commit message: “Starting project 2”)
  7. Push your changes up to GitHub: git push -u gh card-design
    • You should now see a matching copy of your HTML and CSS in your GitHub repo and on the Glitch project page. 🙌🏻🌈😺

↵ back to project page