Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 119 additions & 0 deletions Result.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
<!DOCTYPE HTML>
<html>

<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/et-line-font.css">
<link rel="stylesheet" href="css/nivo-lightbox.css">
<link rel="stylesheet" href="css/nivo_themes/default/default.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/bxslider.css">
<link rel="stylesheet" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Raleway:700' rel='stylesheet' type='text/css'>

<script type="text/javascript">
window.onload = function() {
var chart = new CanvasJS.Chart("chartContainer", {
title: {
text: ""
},
animationEnabled: true,
theme: "theme2",
data: [{
type: "doughnut",
indexLabelFontFamily: "Garamond",
indexLabelFontSize: 20,
startAngle: 0,
indexLabelFontColor: "dimgrey",
indexLabelLineColor: "darkgrey",
toolTipContent: "{y} %",

dataPoints: [{
y: 51.04,
indexLabel: "Android {y}%"
}, {
y: 40.83,
indexLabel: "iOS {y}%"
}, {
y: 3.20,
indexLabel: "Java ME {y}%"
}, {
y: 1.11,
indexLabel: "BlackBerry {y}%"
}, {
y: 2.29,
indexLabel: "Windows {y}%"
}, {
y: 1.53,
indexLabel: "Others {y}%"
}

]
}]
});

chart.render();
}
</script>
<style>
body {
background-color: black;
font-family: "railway";
font-size: 50px;
color: white;
}
</style>
<script src="js/canvasjs.min.js"></script>
<title>BVote</title>
</head>

<body>

<section class="navbar navbar-fixed-top custom-navbar" role="navigation">
<div class="container">

<div class="navbar-header">
<button class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
<span class="icon icon-bar"></span>
</button>
<a href="./Main_View.html" class="smoothScroll navbar-brand">BVote</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="./Log_in.html" class="smoothScroll">VOTE</a></li>
<li><a href="./Pre-condition.html" class="smoothScroll">PRESENT-CONDITION</a></li>
<li><a href="#" class="smoothScroll">/</a></li>
<li><a href="#voting_sys" class="smoothScroll">VOTING SYSTEM</a></li>
<li><a href="#contact" class="smoothScroll">CONTACT US</a></li>
</ul>
</div>

</div>
</section>
<section>
<br><br><br><br>
<div class="row">
<div class="col-md-6" style="text-align: center">
<p> result Test </p>
<div id="chartContainer" style="height: 100%; width: 100%;">
</div>
</div>
<div class="col-md-4">
<p>test</p>
</div>
</div>
</section>

</body>

</html>
Loading