-
Notifications
You must be signed in to change notification settings - Fork 3
/
ranking.html
118 lines (117 loc) · 4.23 KB
/
ranking.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<title>bEquality | Ranking</title>
<meta charset="utf-8"/>
<script src="jquery-3.2.1.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<a class="navbar-brand" href="index.html" style="margin-left:1%">bEquality</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor01" aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarColor01">
<ul class="navbar-nav mr-auto">
<!-- <li class="nav-item active"> -->
<li class="nav-item">
<!-- <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a> -->
<a class="nav-link" href="survey.html">Survey</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="ranking.html">Ranking</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" placeholder="Search" type="text">
<button class="btn btn-secondary my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</nav>
<div style="margin:2%">
<h1>Ranking</h1>
<table class="table table-hover">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Company rating</th>
<th scope="col">Survey rating</th>
<th scope="col">Credibility of data</th>
</tr>
</thead>
<tbody>
<tr class="table-primary">
<th scope="row">UBS</th>
<td>3411</td>
<td>3821</td>
<td>99.9%</td>
</tr>
<tr>
<th scope="row">ZKB</th>
<td>3297</td>
<td>3900</td>
<td>95%</td>
</tr>
<tr class="table-primary">
<th scope="row">Credit Suisse</th>
<td>3000</td>
<td>2784</td>
<td>94.3%</td>
</tr>
<tr>
<th scope="row">Swiss Re</th>
<td>2999</td>
<td>2841</td>
<td>93%</td>
</tr>
<tr class="table-primary">
<th scope="row">Ambrosus</th>
<td>2500</td>
<td>2124</td>
<td>99.9%</td>
</tr>
<tr>
<th scope="row">SBB</th>
<td>2654</td>
<td>2840</td>
<td>91.9%</td>
</tr>
<tr class="table-primary">
<th scope="row">EWZ</th>
<td>9871</td>
<td>10111</td>
<td>44.9%</td>
</tr>
<tr>
<th scope="row">Space X</th>
<td>2412</td>
<td>1987</td>
<td>95.9%</td>
</tr>
<tr class="table-primary">
<th scope="row">NASA</th>
<td>2001</td>
<td>1622</td>
<td>99.9%</td>
</tr>
<tr>
<th scope="row">Mc Donalds</th>
<td>1544</td>
<td>1449</td>
<td>87.2%</td>
</tr>
</tbody>
</table>
</div>
<script src="custom.js"></script>
</body>
<h6 style="margin-left:2%">Note: the above presented ranking is not representative. The companies do not get represented by this ranking.</h6>
<h6 style="margin-left:2%">The company names have been chosen to induce authenticity and not to express our opinion.</h6>
</html>