diff --git a/Readme.md b/Readme.md
new file mode 100644
index 0000000..f1750ad
--- /dev/null
+++ b/Readme.md
@@ -0,0 +1,14 @@
+# Sorter version 2
+
+This is simple project with sorting data: alphabetically, with length text and randomly, with data input from user.
+
+## Installation
+
+https://brq1.github.io/Sorter/
+
+## Usage
+
+Enter a data in textarea. Text must be split of coma ( , ).
+Next you select function to sort.
+
+
diff --git a/script.js b/script.js
deleted file mode 100644
index 409e567..0000000
--- a/script.js
+++ /dev/null
@@ -1,63 +0,0 @@
-var Months = [
- "January",
- "February",
- "March",
- "April",
- "May",
- "Juni",
- "July",
- "August",
- "September",
- "Oktober",
- "November",
- "December"
-];
-var MonthsClone = Months.slice(0);
-
-function sortInTurn(){
-
- document.getElementById("List").innerHTML = MonthsClone.join("
");
-}
-
-function sortAZ(){
- Months.sort();
- if (document.getElementById("AZ").value == "Sort A to Z") {
- document.getElementById("AZ").value = "Sort Z to A";
- document.getElementById("List").innerHTML = Months.join("
");
- }
- else{
- Months.reverse();
- document.getElementById("AZ").value = "Sort A to Z";
- document.getElementById("List").innerHTML = Months.join("
");
- }
-}
-
-function sortLtext(){
-
- var MlenghtText = [];
- var temp;
- for (var i=0; i < Months.length; i++){
-
-
- for (var j=1; j < Months.length; j++){
- if (Months[j-1].length > Months[j].length){
- temp = Months[j];
- Months[j] = Months[j-1];
- Months[j-1] = temp;
- }
- }
- }
- document.getElementById("List").innerHTML = Months.join("
");
-}
-
-function Random(){
- var n = Months.length, temp, x;
- for (i=0; i < n; i++ ) {
- x = Math.floor(Math.random()*n);
- temp = Months [i];
- Months[i] = Months[x];
- Months[x] = temp;
- }
-
- document.getElementById("List").innerHTML = Months.join("
");
-}
diff --git a/index.html b/src/index.html
similarity index 67%
rename from index.html
rename to src/index.html
index d85bcdd..22eb29a 100644
--- a/index.html
+++ b/src/index.html
@@ -4,23 +4,28 @@