diff --git a/doc/workflow/README.md b/doc/workflow/README.md
index 33176aaba44134fe1664951e8d98ca5faeb95e88..3c0007d819856a1231b2317ef33a44336a9bab2b 100644
--- a/doc/workflow/README.md
+++ b/doc/workflow/README.md
@@ -10,3 +10,4 @@
 - [Migrating from SVN to GitLab](migrating_from_svn.md)
 - [Project importing from GitHub to GitLab](import_projects_from_github.md)
 - [Protected branches](protected_branches.md)
+- [Web Editor](web_editor.md)
diff --git a/doc/workflow/web_editor.md b/doc/workflow/web_editor.md
new file mode 100644
index 0000000000000000000000000000000000000000..c83715deff7bf74491744c39b17a91ecd9877d06
--- /dev/null
+++ b/doc/workflow/web_editor.md
@@ -0,0 +1,23 @@
+# GitLab Web Editor
+
+In GitLab you can create new files and edit existing one using our web editor. 
+Its really useful if you dont have access to command line or you want to make a quick small fix.
+You can access to web editor in several ways depends on context. 
+Lets start from newly created project. 
+Click on `Add a file` button to start web editor for creating first file.
+
+![web editor 1](web_editor/empty_project.png)
+
+Fill in file name, content, commit message and press commit button.
+After this file will be saved to repository.
+
+![web editor 2](web_editor/new_file.png)
+
+You can edit any text file in repository by pressing edit button when browsing file.
+
+![web editor 3](web_editor/show_file.png)
+
+Edit of file is pretty same as creating new file. 
+Except you can see preview of your changes to file in separate tab
+
+![web editor 3](web_editor/edit_file.png)
diff --git a/doc/workflow/web_editor/edit_file.png b/doc/workflow/web_editor/edit_file.png
new file mode 100644
index 0000000000000000000000000000000000000000..1522c50b62fcf5d4fd1c3d0abdc1232e8e09ca98
Binary files /dev/null and b/doc/workflow/web_editor/edit_file.png differ
diff --git a/doc/workflow/web_editor/empty_project.png b/doc/workflow/web_editor/empty_project.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a049f6beafbb1f449e43baa5925b10d31410cad
Binary files /dev/null and b/doc/workflow/web_editor/empty_project.png differ
diff --git a/doc/workflow/web_editor/new_file.png b/doc/workflow/web_editor/new_file.png
new file mode 100644
index 0000000000000000000000000000000000000000..80941f37cea0c50d4e16f9df0460cd0fd705b36d
Binary files /dev/null and b/doc/workflow/web_editor/new_file.png differ
diff --git a/doc/workflow/web_editor/show_file.png b/doc/workflow/web_editor/show_file.png
new file mode 100644
index 0000000000000000000000000000000000000000..9cafcb551091a8959671dbedc113062ddbd7da7e
Binary files /dev/null and b/doc/workflow/web_editor/show_file.png differ