44 lines
747 B
HTML
44 lines
747 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Ballot Experiments Results</title>
|
|
</head>
|
|
|
|
<body>
|
|
<style>
|
|
form, table, th, td {
|
|
border:1px solid black;
|
|
border-collapse: collapse;
|
|
background-color: #E0E0E0;
|
|
}
|
|
</style>
|
|
|
|
Here are the results by Plurality Voting based on <!-- INJECT --> voters:
|
|
<br>
|
|
<table>
|
|
<tr>
|
|
<th>Candidate</th>
|
|
<th># Votes</th>
|
|
<th>% Votes</th>
|
|
</tr>
|
|
<!-- INJECT -->
|
|
</table>
|
|
<br>
|
|
|
|
Here are the results by Range Voting based on <!-- INJECT --> voters:
|
|
<br>
|
|
<table>
|
|
<tr>
|
|
<th>Candidate</th>
|
|
<th># Voters</th>
|
|
<th>% Happiness</th>
|
|
</tr>
|
|
<!-- INJECT -->
|
|
</table>
|
|
<br>
|
|
|
|
</body>
|
|
|