Week01 - principles and practices, project management //////

Assignment:
Work through a git tutorial build a personal site in the class archive describing you and your final project.




MAKING MY WEBSITE

It is the first time that I do a web page, I have decided not to use a template in order to understand the basic things from the beginning, so I started doing it with the video of the class.

STEPS:

* Download brackets

* I started from a basic html example (you should call it index.htm in order to see the preview):



* Make the style.css file (new folder):

What is CSS?
CSS stands for Cascading Style Sheets
CSS describes how HTML elements are to be displayed on screen, paper, or in other media
CSS saves a lot of work. It can control the layout of multiple web pages all at once
External stylesheets are stored in CSS files


Make the link in html:



Example:

* Put the images in another folder called media.

Tools:
Photoshop
Ilustrator

Usefull codes:





links

Sources:
www.w3schools.com
html+css class
html tutorial





USING GIT

For windows users you can download it from here

Commands for uploading files:

git pull
Fetch from and integrate with another repository or a local branch



git status
Show the working tree status



git add
Add file contents to the index

git add .
Add all the files



git commit -m "message"
Record changes to the repository



git push
Update remote refs along with associated objects



Sources:
Git class



home