Files
rangevote/results.html

44 lines
747 B
HTML
Raw Permalink Normal View History

2023-10-17 16:30:56 -04:00
<!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;
2023-10-18 15:00:45 -04:00
border-collapse: collapse;
background-color: #E0E0E0;
2023-10-17 16:30:56 -04:00
}
</style>
2023-10-18 15:00:45 -04:00
Here are the results by Plurality Voting based on <!-- INJECT --> voters:
2023-10-17 16:30:56 -04:00
<br>
<table>
<tr>
<th>Candidate</th>
2023-10-18 15:00:45 -04:00
<th># Votes</th>
<th>% Votes</th>
2023-10-17 16:30:56 -04:00
</tr>
<!-- INJECT -->
2023-10-18 15:00:45 -04:00
</table>
<br>
Here are the results by Range Voting based on <!-- INJECT --> voters:
2023-10-17 16:30:56 -04:00
<br>
<table>
<tr>
<th>Candidate</th>
2023-10-18 15:00:45 -04:00
<th># Voters</th>
<th>% Happiness</th>
2023-10-17 16:30:56 -04:00
</tr>
<!-- INJECT -->
</table>
<br>
2023-10-18 15:00:45 -04:00
2023-10-17 16:30:56 -04:00
</body>