step by step guide
cdinto the parent directory- using the gui open the folder that you want to make a project in
mkdiryour project folder- in the gui right click and create a new folder
- name this folder whatever you want to call your project
- run
git initto set this up as a git repository - Start creating files
- create an
index.html- using the command line run
touch index.html - using the gui right new file button
- using the command line run
- create an
assets/folder- if using command line run
mkdir assets - if using the gui right click and select make new folder
- if using command line run
- add a css file inside assets
- using command line run
touch assets/style.css - using the gui, right click on the assets folder and click add new file
- name it
style.css
- name it
- using command line run
- add an
images/folder- inside it add your images
- make sure there are no spaces in the file names
- inside it add your images
- your project should be ready for a getting to work
- remember to
git addandgit commityour changes
- remember to
- create an
mvmovecdchange directorytouchcreate a filemkdirmake a directoryrmremove a filerm -rfremove a directory../go back one directory./right here