polymer not working or displaying no elements
Trying to display hello world using elements but nothing happens any help? index.html <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> <script src="bower_components/webcomponentsjs/webcomponents.js"></script> <link rel="import" href="elements/hello-world.html"> </head> <body unresolved> <hello-world></hello-world> </body> </html> hello-world.html <link rel="import" href="../bower_components/polymer/polymer.html"> <polymer-element name="hello-world" nonscript> <template> <h2>Hello World</h2> </template> <