Sample code
To load your sample code into Glitch:
Create a glitch account
Create a new project of type "glitch-hello-website"
Drag the code.zip file to the assets folder inside your glitch project. Then click on the file to grab the Glitch URL to that file. You'll need this URL in step #5.2
Open up the Terminal by going to Tools > Terminal
-
Paste these commands into the terminal one by one:
rm *
wget -O code.zip REPLACE_WITH_YOUR_ZIP_ASSET_URL
unzip -j code.zip "*.html" "*.css" "*.js"; rm -r -f ._*; rm .gitignore; refresh
