diff --git a/docs/Principles and Practices + Project Management.md b/docs/Principles and Practices + Project Management.md
index d1ff7f7aa80ccb2c843e3f186d79abeb0102441a..672d9a96fc2b226022e65762944be1b479852bfb 100644
--- a/docs/Principles and Practices + Project Management.md	
+++ b/docs/Principles and Practices + Project Management.md	
@@ -41,44 +41,42 @@ One way to log on to Fabcloud is use login credentials from fablabs.io. That is
 
 1. Install Git on your local computer.  
 
-Install Git through the command line - Terminal app (macOS).  
+    Install Git through the command line - Terminal app (macOS).  
+    Install [Homebrew](https://brew.sh/), a package manager using the instructions on the website.  
+    ![](./images/pppm/brew.png)  
+    and then   
+    `brew install git`  
+    There are other ways to install git as mentioned on the website too.  
+    Ref: [](https://git-scm.com/download/mac)  
 
-Install [Homebrew](https://brew.sh/), a package manager using the instructions on the website.  
-
-![](./images/pppm/brew.png)
-
-and then   
-
-`brew install git`  
+2. Configure user  
 
-There are other ways to install git as mentioned on the website too.  
+    To configure your user from scratch, in your terminal, add your Git username and set your email for uploading  
+    `git config --global user.name "mitalee.parikh"`  
+    `git config --global user.email "emaitee@gmail.com"`  
+    This helps in tracking who makes the changes on the shared gitlab repo which is public.  
 
-Ref: https://git-scm.com/download/mac  
+3. Generate SSH key  
 
-2. Configure user  
+    Check if you have an SSH KEY already  
+    `cat ~/.ssh/id_rsa.pub`  
+    If not, generate it using  
+    `ssh-keygen -t rsa -C "emaitee@gmail.com"`  
+    Then use the above command to view your public key and copy it.  
+    Upload this key on the Gitlab Website onthe browser. Go to user profile > Settings > SSH keys and copy it there.  
+    Now, your Gitlab server is securely linked to your local computer.  
 
-To configure your user from scratch, in your terminal, add your Git username and set your email fro uploading  
-`git config --global user.name "mitalee.parikh"`  
-`git config --global user.email "emaitee@gmail.com"`  
-This helps in tracking who makes the changes on the shared gitlab repo which is public.  
-3. Generate SSH key  
-Check if you have an SSH KEY already  
-`cat ~/.ssh/id_rsa.pub`  
-If not, generate it using  
-`ssh-keygen -t rsa -C "emaitee@gmail.com"`  
-Then use the above command to view your public key and copy it.  
-Upload this key on the Gitlab Website onthe browser. Go to user profile > Settings > SSH keys and copy it there.
-Now, your Gitlab server is securely linked to your local computer.  
 4. Start a git repository  
-There are several ways to make a repository:  
-1. On the GitLab website, create a repository and then clone it locally.  
-2. In the terminal initialising it from scratch using `git init` by changing current directory to desired location.  
-3. Cloning an existing one.  
-Since out student repos on GitLab already have a default template installed, we can directly clone it on our local computer, wherever you want to store your documentation.  
-Your student repo consists of the default student template. First task is to clone this existing template to your local repo. After you cd to your local repo, use this to clone.  
-`git clone git@gitlab.fabcloud.org:academany/fabacademy/2020/labs/barcelona/students/mitalee-parikh.git`  
-Now, you have made a clone of the template on your local repository.  
-![](./images/pppm/clone.png)  
+
+    There are several ways to make a repository:  
+    1. On the GitLab website, create a repository and then clone it locally.  
+    2. In the terminal initialising it from scratch using `git init` by changing current directory to desired location.  
+    3. Cloning an existing one.  
+    Since out student repos on GitLab already have a default template installed, we can directly clone it on our local computer, wherever you want to store your documentation.  
+    Your student repo consists of the default student template. First task is to clone this existing template to your local repo. After you cd to your local repo, use this to clone.  
+    `git clone git@gitlab.fabcloud.org:academany/fabacademy/2020/labs/barcelona/students/mitalee-parikh.git`  
+    Now, you have made a clone of the template on your local repository.  
+    ![](./images/pppm/clone.png)  
 
 4. Basic workflow and repository structure  
 ---
diff --git a/docs/assets/HelveticaNeue.ttc b/docs/assets/HelveticaNeue.ttc
new file mode 100644
index 0000000000000000000000000000000000000000..3f1fa73369cf8a4b7b1c18a623c66c2b24aec156
Binary files /dev/null and b/docs/assets/HelveticaNeue.ttc differ
diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css
new file mode 100644
index 0000000000000000000000000000000000000000..e8c5b83ff4def7388b5f86c8b59424411c8791a4
--- /dev/null
+++ b/docs/stylesheets/extra.css
@@ -0,0 +1,4 @@
+@font-face {
+  font-family: "<HelveticaNeue>";
+  src: "./assets/HelveticaNeue.ttc";
+}
diff --git a/docs/stylesheets/extra.css/main.css b/docs/stylesheets/extra.css/main.css
deleted file mode 100644
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000
diff --git a/mkdocs.yml b/mkdocs.yml
index a7a98e1e049e6cfb8039c4f76f2463bfc0b4ec74..0feb2c1dd515b00e4015cdd1c85bbfcf5fc8df80 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -13,7 +13,7 @@ theme:
     primary: white
     accent: white
   font:
-    text: Ubuntu
+    text: false
     code: Roboto Mono
   features:
     tabs: false
@@ -59,3 +59,6 @@ markdown_extensions:
   - pymdownx.highlight
   - pymdownx.superfences
   - pymdownx.inlinehilite
+
+extra_css:
+  - stylesheets/extra.css