OLD | NEW |
(Empty) | |
| 1 |
| 2 <!doctype html> |
| 3 <!-- |
| 4 Copyright 2013 The Polymer Authors. All rights reserved. |
| 5 Use of this source code is governed by a BSD-style |
| 6 license that can be found in the LICENSE file. |
| 7 --> |
| 8 <html> |
| 9 <head> |
| 10 <title>polymer-ui-tabs</title> |
| 11 <meta charset="utf-8"> |
| 12 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
| 13 <!-- load toolkit --> |
| 14 <script src="../platform/platform.js"></script> |
| 15 <!-- import elements--> |
| 16 <link rel="import" href="polymer-ui-tabs.html"> |
| 17 <!-- --> |
| 18 <link rel="stylesheet" href="../polymer-ui-base/base.css"> |
| 19 </head> |
| 20 <body class="polymer-ui-body-text" unresolved> |
| 21 <polymer-ui-tabs selected="0"> |
| 22 <span>One</span> |
| 23 <span>Two</span> |
| 24 <span>Three</span> |
| 25 <span>Four</span> |
| 26 <span>Five</span> |
| 27 </polymer-ui-tabs> |
| 28 </body> |
| 29 </html> |
OLD | NEW |