From be29f9ab92b065c95ee0e03441ba16eec1db871b Mon Sep 17 00:00:00 2001 From: Kevin Kwok Date: Wed, 12 Oct 2016 04:38:38 -0400 Subject: [PATCH] words --- css/main.css | 17 +++++++++++++++++ index.html | 5 ++++- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/css/main.css b/css/main.css index 64aaad9..82fc19d 100644 --- a/css/main.css +++ b/css/main.css @@ -237,6 +237,23 @@ body, html{ opacity: 0.5; } + +#footer { + color: #ffffff; + background-color: #f6f6f6; + text-align: right; + padding: 0 20px; + background-color: #425565; + background: url(../img/bg.jpg); + background-size: cover; + background-position: bottom; +} + +#footer a { + color: white !important; + +} + @media (min-width: 900px) { #drop-instructions-main { diff --git a/index.html b/index.html index 3971794..118855f 100644 --- a/index.html +++ b/index.html @@ -32,7 +32,10 @@ -->
-

Tesseract.js can recognize text in over 60 languanges, in <img> elements, <video> elements, <canvas> elements, remote urls, dropped files, and more! Example code and API docs are on GitHub.

+

Tesseract.js is a pure Javascript port of the popular Tesseract OCR engine.

+

This library supports over 60 languanges, automatic text orientation and script detection, a simple interface for reading paragraph, word, and character bounding boxes. Tesseract.js can run either in a browser and on a server with NodeJS.

+ +

Check out the Example code and API docs on GitHub.