2019-09-15 18:42:17 +00:00
|
|
|
---
|
|
|
|
title: finding your index.html
|
2023-07-25 05:57:16 +00:00
|
|
|
category: tutorials
|
2019-09-15 18:42:17 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
There are some basic command line commands you'll want to Google and learn, but for this tutorial you only need a few:
|
|
|
|
|
|
|
|
`ls` = list files and folders in current directory
|
|
|
|
|
|
|
|
`cd` = change directories
|
|
|
|
|
|
|
|
`vim`, `emacs`, `nano` = a text editor
|
|
|
|
|
|
|
|
Type: `ls` to see where you are; you should see a directory called "public_html"
|
|
|
|
|
|
|
|
Type: `cd public_html` to browse into that folder
|
|
|
|
|
|
|
|
Type: `ls` to see where you are; you should see your index.html file
|