<!DOCTYPE html> <html> <head> <title>angular 2 basic counter</title> <link rel="stylesheet" href="style.css" /> <script src="https://code.angularjs.org/2.0.0-beta.11/angular2-polyfills.js"></script> <script src="https://code.angularjs.org/tools/system.js"></script> <script src="https://code.angularjs.org/tools/typescript.js"></script> <script src="config.js"></script> <script src="https://code.angularjs.org/2.0.0-beta.11/Rx.js"></script> <script src="https://code.angularjs.org/2.0.0-beta.11/angular2.dev.js"></script> <script src="https://code.angularjs.org/2.0.0-beta.11/http.dev.js"></script> <script src="https://code.angularjs.org/2.0.0-beta.11/router.dev.js"></script> <script> System.import('app') .catch(console.error.bind(console)); </script> </head> <body> <app></app> </body> </html>