UNPKG

esnextbin

Version:

Prototype JavaScript programs in the browser with ESNext (a.k.a ES2015) syntax and features, using modules from NPM.

33 lines (32 loc) 948 B
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <title>ESNextbin | DEV</title> <style> #preloader { background-image: url('./assets/pacman.gif'); width: 30px; height: 30px; background-size: 30px; position: absolute; top: 50%; left: 0; right: 0; margin: 0 auto; transform: translateY(-50%); z-index: 100; } </style> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:400,600,700,300|Roboto+Mono:400,500,700&subset=latin,cyrillic"> <link rel="stylesheet" type="text/css" href="build/app.css"> </head> <body> <div id="preloader"></div> <div id="root"></div> <script src="assets/vendor/emmet.js"></script> <script src="build/app.js" async defer></script> </body> </html>