I'm trying to learn polymer and fail to use a basic polymer element I prepare.
<!doctype html>
<html>
<head>
<title>My Test</title>
<script src="./components/platform/platform.js"></script>
<link rel="import" href="my-element.html">
</head>
<body>
<div>
<my-element></my-element>
</div>
</body>
</html>
my-element.html
<link rel="import" href="./components/polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
div { width: 300px;}
my-element { font: bold 16px cursive;}
</style>
<div>
<p>rtrthdfghdfghdfghdgsdfasdfa</p>
</div>
</template>
</polymer-element>
Now, I see in chrome that all resources are loaded fine (200 OK), yet nothing appears on page.