40 lines
575 B
HTML
40 lines
575 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;
|
|
}
|
|
</style>
|
|
Here are the results by Range Voting:
|
|
<br>
|
|
|
|
<table>
|
|
<tr>
|
|
<th> </th>
|
|
<th>Candidate</th>
|
|
</tr>
|
|
<!-- INJECT -->
|
|
</table>
|
|
|
|
<br>
|
|
And here are the results by Plurality Voting:
|
|
<table>
|
|
<tr>
|
|
<th> </th>
|
|
<th>Candidate</th>
|
|
</tr>
|
|
<!-- INJECT -->
|
|
</table>
|
|
|
|
<br>
|
|
</body>
|
|
|