Assignment
The first week assignment was building our own personal website with HTML and CSS to document all the courses along the program and the final project uploaded. I decided to download a template because I have zero experience with HTML and websites , so I tried to understand and figure out how it works.
At the beginning I choose The Bootstrap Themes free website template but after working on it for a couple of hours, I unfortunately realized it was not exactly what I was looking for, and having in consideration that I have no experience in HTML language, I decide to look for something else that feeds my needs. After hours and hours of seeking, I found a free-css.com template and I started again.
After spending hours and hours editing i came up with new modified templated from my sideview
Within the editing of my web i used the Sublime Text which was super easy to use and because of it's colorfull text it helps to defferentiate tags in HTML
The structure of the files I used was from the template I downloaded and modified it meet fabacademy standards.
The home folder is called danny-bizimana and below is the tree of the project.
For the size of the web to keep it small, I chose a template with small size and all my picture were take using camera of telephone to have a small size.
Next step was sign up in https://gitlab.fabcloud.org/ and then login in GitLab. for this I got the emai I also download Git for windows platform in order to be able upload the assignment to the repository where we will be uploading all the assignments week by week.
Git is a distributed version-control system for tracking changes in source code during software development. It is designed for coordinating work among programmers, but it can be used to track changes in any set of files.
The commands to set up and prepare to upload files to the repository:
git config --global user.name "user name"
git config --global user.email "user email"
ssh-keygen -t rsa -C "my.email@example.com" -b 4096
pbcopy < ~/.ssh/id_rsa.pub
git clone git@gitlab.fabcloud.org:academany/fabacademy/2019/labs/rwanda/students/danny-bizimana.git
cd danny-bizimana
git add .
git rebase origin/master
git push origin master
git fetch origin
git rebase origin/master
git push origin master