diff --git a/README.md b/README.md
index a549d8c..71e816c 100644
--- a/README.md
+++ b/README.md
@@ -6,13 +6,54 @@
3. [Interact with the environement](#interact-env)
4. [Other events](#other-interact-env)
5. [Custom your environement](#configure-env)
-5. [Create your own level](#create-leven)
+5. [Create your own level](#create-level)
-Getting Started
+Getting started
+------------
-npm install, from typescript and from include.
-Say ton include pixi.js!
+### Installing Metacar
+
+You can used Metacar with a direct link in your HTML file or installing it from NPM. However, metacar is based on [Pixi.js](www.pixijs.com): 4.7.1, then you need to include pixi.js as a global dependencies in your HTML.
+
+#### Script Tag
+
+```html
+
+
+
+
+ Metacar: Documentation
+
+
+
+
+
+
+```
+
+#### Script Tag and npm
+
+```shell
+npm i metacar
+```
+
+```html
+
+
+
+
+ Metacar: Documentation
+
+
+
+
+
+
+```
+```javascript
+import Metacar from "metacar";
+```
------------
@@ -20,6 +61,32 @@ Say ton include pixi.js!
Your first environement
------------
+Even if you can [create your own level](#create-level), Metacar comes up with a set of predefined level accessible under [metacar.level](#). Once your level is selected, you can use it to create a first environement.
+
+```javascript
+// Select a level
+const level = metacar.level.level1;
+// Create the environement
+const env = new metacar.env("env", level);
+// Load it
+env.load();
+```
+
+You also have to create the container in your HTML file.
+```html
+
+```
+(NOTE: metacar.env can be instanciate with an object or a string for the level parameters: [doc API](#link))
+
+Wonderful! You just create your first metacar environement. You can take sometime to play around with the key arrow to move the car. The current collision system support the detection of the following events:
+
+* Collisions with other vehicles
+* Detection of the road, ground and road with the lidar
+* Detection of the car going out track
+
+If you want to see add features to the detection system you can considere [contributing to the project](#link) :)
+
+
Interact with the environement
------------
@@ -49,4 +116,8 @@ Custom your environement
------------
+
+Link
+------------
+