diff --git a/docs/tutorial/part-zero/index.md b/docs/tutorial/part-zero/index.md index 89484cce093ba..9ad2e0eed9be7 100644 --- a/docs/tutorial/part-zero/index.md +++ b/docs/tutorial/part-zero/index.md @@ -7,7 +7,7 @@ Here’s a list of basic programming knowledge and tools that are necessary befo ### Necessary tools: -- _How a website works_: Reading about [the basics of how a website works](https://www.codeschool.com/beginners-guide-to-web-development/how-does-a-website-work) might be helpful. +- _How a website works_: The best way to learn about how a website works is to make one! [This tutorial](https://learn.shayhowe.com/html-css/building-your-first-web-page/) will guide you into building your very first web page. - _Command Line:_ The command line is a text interface you can open on your computer. It allows you to run commands to your computer's operating system. It's necessary to learn this skill to become a programmer. For a great introduction to the command line, try [Codecademy's Command Line tutorial](https://www.codecademy.com/courses/learn-the-command-line/lessons/navigation/exercises/your-first-command) for Mac and Linux users, and [this tutorial](https://www.computerhope.com/issues/chusedos.htm) for Windows users. Even if you are a Windows user, the first page of the Codecademy tutorial is still worth reading because it explains _what_ the command line is, not just how to use it. - _Code editor:_ Code editing programs allow you to write, edit, and save the code you'll need to write to make your website work. [Visual Studio Code](https://code.visualstudio.com/download) is a great code editor for Mac, Linux, and Windows users. Refer to their docs for help on getting started. There are many other great code editors; you may want to ask other programmers what code editor they prefer. - _Browser console:_ Any internet browser you use has a console that allows you to inspect what is happening on any web site. This will help you figure out how to solve errors that happen while you build your website. If you are using Chrome as your web browser, here is an explanation of [how the Chrome browser console works](https://developers.google.com/web/tools/chrome-devtools/console/). If you use another web browser, search for instructions on how to access and use that browser's console.