diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..79e1b36 --- /dev/null +++ b/README.txt @@ -0,0 +1,33 @@ +Helloooo + +This is a little file to explain what's going on in these folders. + +the folder 'layout' contains > + + the folder 'paged.js_files' > the library Paged.js + Paged.js is a free and open source JavaScript library that paginates + content in the browser to create PDF output from any HTML content.) + https://www.pagedjs.org/about/ + + the folder 'styles' > there are three different .css files that change + the layout. + + the 'index.html' > where you can visualize the rendering of the layout. + It works through a live server, that means that you have to simulate a + server in your computer: how? + you can use python, opening the terminal/cmd and digit > + python3 -m http.server + you can use Visual Studio Code with the extension "Live Server" + + +the folder 'speech' contains > + + the 'index.html' > in order to visualize which words are recognized by + the Speech-to-text + + the 'style.css' > where is written the layout of the html page + + the index.js > where is written the code to use the Speech-to-text app + + + diff --git a/layout/index.html b/layout/index.html index 6220d0a..7420d3f 100644 --- a/layout/index.html +++ b/layout/index.html @@ -1,9 +1,8 @@ - - - + + Booklet diff --git a/layout/interface.css b/layout/paged.js_files/interface.css similarity index 100% rename from layout/interface.css rename to layout/paged.js_files/interface.css diff --git a/layout/script/paged.js b/layout/paged.js_files/paged.js similarity index 100% rename from layout/script/paged.js rename to layout/paged.js_files/paged.js diff --git a/layout/script/paged.polyfill.js b/layout/paged.js_files/paged.polyfill.js similarity index 100% rename from layout/script/paged.polyfill.js rename to layout/paged.js_files/paged.polyfill.js diff --git a/index.html b/speech/index.html similarity index 100% rename from index.html rename to speech/index.html diff --git a/index.js b/speech/index.js similarity index 100% rename from index.js rename to speech/index.js diff --git a/style.css b/speech/style.css similarity index 100% rename from style.css rename to speech/style.css