Project 3 Setup

  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 event.
  3. After you’ve created your new branch and are working on the event 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 3”)
  7. Push your changes up to GitHub: git push -u gh event
    • 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