-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (20 loc) · 857 Bytes
/
index.html
File metadata and controls
30 lines (20 loc) · 857 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title><twitter-button></title>
<!-- Importing Web Component's Polyfill -->
<script src="bower_components/webcomponentsjs/webcomponents.min.js"></script>
<!-- Importing Custom Elements -->
<link rel="import" href="src/twitter-button.html">
</head>
<body>
<twitter-button user="Web_Components" type="follow"></twitter-button>
<br><br>
<twitter-button user="Web_Components" type="share" hashtag="HelloWorld" text="This is my text!" href="http://www.nfl.com"></twitter-button>
<br><br>
<twitter-button type="hashtag" hashtag="HelloWorld" href="http://webcomponents.org" text="This is my text!"></twitter-button>
<br><br>
<twitter-button user="Web_Components" type="mention" text="Hello Everyone!"></twitter-button>
</body>
</html>