-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
31 lines (27 loc) · 1.07 KB
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>plastic-paragraph Demo</title>
<script src="../webcomponentsjs/webcomponents.min.js"></script>
<link rel="import" href="plastic-paragraph.html">
<style>
html, body{
font-family: "Futura ND", Helvetica, Arial, sans-serif;
font-weight: bold;
font-size: 1.4em;
height: 100%;
-webkit-hyphens: manual;
-moz-hyphens: manual;
-ms-hyphens: manual;
hyphens: manual;
width: 100%;
}
</style>
</head>
<body unresolved>
<p is="plastic-paragraph" shape="circle" size="1200">
Web Components usher in a new era of web development based on en­capsulated and interoperable custom elements that extend HTML itself. Built atop these new stan­dards, Polymer makes it easier and faster to create anything from a button to a complete application across desktop, mobile, and beyond.
</p>
</body>
</html>