What is The Internet Challenges
Basic Challenges
- Go to your favorite website.
- Right click in the browser, click
Save As, then save to your desktop. (If you don't see aSave Asoption, try right clicking a different part of the page or another site. Some sites override the default right click behavior.) - On your desktop, you should have a newly saved folder and HTML file. Open both - what do you notice?
- Back in the browser, hit
command + option + i - You are now in the Elements tab of the Chrome Developer Tools. Click through the other tabs and explore!
- Back in the Elements tab, make some CSS changes using the Inspect Elements tool. Take a screenshot so you can show your work to a friend!
Stretch Challenges
- Go to the Console tab of the Chrome Developer Tools.
- Type
4 + 4in the console, and hitenter. - Now, type
hello world- what does that return? - Try it again, but this time with quotes,
"hello world". Much better!
Other Stuff
- Make sure you have a GitHub account and have successfully pushed your fundamentals project.
Make sure you have the
sublcommand set up so you can open Sublime from your Terminal- For Sublime Text 2, type this in your terminal:
ln -s "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl- For Sublime Text 3, type this in your terminal:
ln -s "/Applications/Sublime Text 3.app/Contents/SharedSupport/bin/subl" /usr/local/bin/sublRead at least one article from The Internet section in the further readings listed below.
- Create a directory (folder) somewhere on your computer called
wdi-day-1. - Inside that directory, create an
index.htmlfile, and write three interesting things you learned or questions you have from the reading you chose in part 3. - Create a new repo on GitHub called
wdi-day-1, and push yourindex.htmlfile to that remote repo. - Think of a "passion project" that you're excited to work on either as one of your formal projects or after the class. Write one paragraph about the project in a
passion_project.htmlfile insidewdi-day-1and push that as well. - Submit the link to your GitHub repo in the homework submission form.