├── app.js ├── index.html └── styles.css /app.js: -------------------------------------------------------------------------------- 1 | function process() { 2 | console.log("I'm connected"); 3 | } 4 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Resize Images Before Upload 8 | 9 | 10 | 11 | 12 |
13 | 14 |
15 |
16 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 20px; 3 | background: #e6f2ff; 4 | } 5 | 6 | input, 7 | button { 8 | font-size: 60px; 9 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, 10 | Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; 11 | } 12 | --------------------------------------------------------------------------------