CHEATSHEET

Command Command Lines

TAG NAME DESCRIPTION EXAMPLE
mkdir Make directory/folder Creates a new directory/folder "mkdir ./coding projects"
touch touch Creates a new file "touch .coding/project canon.txt"
cd .. current directory Returns to last directory/folder "cd .." or go back twice "cd ../.."
clear clear Clears the screen to blank "clear"
pwd print working directory Prints out current directory "pwd" print out= ./user/person1/coding/projects
ls List List current files/folders in current directory "ls" prints out= project(folder) canon.txt(file)

CSS Tags

TAG DESCRIPTION EXAMPLE
@font-face Includes ext. font in css @font-face { font-family: 'FontName' src: url(directory link or url) format(truetype);
box-sizing Changes element box size box-sizing: border-box;
position Modify the element To overlap another element= position: absolute or relative;
display Where/how to display that element Display an element next to another= display: inline-block;