mirror of
https://github.com/tildeclub/site.git
synced 2026-08-25 11:59:23 +00:00
Software words and website words are capitalized (or, as another option, all caps), articles in the "tilde.club" category must have most words capitalized (may capitalize word in case of doubt), and the rest of the titles must have first word, of the title, capitalized, with the rest of the (non-software) words, of the title, all lowercase. Signed-off-by: keyboardan <keyboardan@tilde.club>
19 lines
501 B
Markdown
19 lines
501 B
Markdown
---
|
|
title: Finding your index.html
|
|
category: tutorials
|
|
---
|
|
|
|
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
|