-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
34 lines (34 loc) · 1.96 KB
/
index.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
32
33
34
<!-- Vote Demo using PubNub JavaScript V4 SDK and HighCharts-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/png" href="icon.png">
<meta name="description" content="Vote Demo using PubNub JavaScript V4 SDK and HighCharts.">
<meta name="keywords" content="JavaScript,PubNub,Chat,chat-room,chatting,SDK,PubSub-sdk,tutorial,vote,highcharts,high-charts,charts,demo">
<meta name="author" content="Chandler Mayo">
<meta property="og:title" content="Ice Cream Vote" />
<meta property="og:type" content="website" />
<meta property="og:description" content="Vote Demo using PubNub JavaScript V4 SDK and HighCharts." />
<meta property="og:image" content="https://d2c805weuec6z7.cloudfront.net/Powered_By_PubNub.png" />
<meta property="og:url" content="https://vote.chandlermayo.com/" />
<meta property="og:site_name" content="Vote PubNub" />
<link rel="stylesheet" href="styles.css">
<title>Vote PubNub</title>
</head>
<body>
<div class="page-container">
<div id="chart-container"></div>
<div id="buttons">
<button onClick="publishVote('0')">Vote Chocolate</button>
<button onClick="publishVote('1')">Vote Vanilla</button>
<button onClick="publishVote('2')">Vote Strawberry</button>
</div>
<p><a href="https://www.pubnub.com/?devrel_pbpn=vote_pubnub"><img src="https://d2c805weuec6z7.cloudfront.net/Powered_By_PubNub.png?devrel_pbpn=vote_pubnub" alt="Powered By PubNub" width="150" class="center"></a><p>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://cdn.pubnub.com/sdk/javascript/pubnub.4.23.0.min.js"></script>
<script src="vote.js"></script>
</div>
</body>
</html>