Notice: Undefined index: br in C:\AppServ\www\pages\public\index\index.view.php on line 10
The Emperor keeps track of all those who make the much needed donations to his empire. According to your donations, the imperial court will confer an official title on you, to show appreciation for your contribution to the Empire.
There are 6 noble titles available for an adventurer to acquire. To earn one of them, you have to donate a certain amount of Silver to the Empire. The more Silver you donate, the higher rank you can obtain!
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table Example</title>
<style>
table {
width: 50%;
border-collapse: collapse;
}
th, td {
border: 1px solid black;
padding: 5px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Title</th>
<th>Max</th>
<th>Requirement</th>
<th>Battle Power</th>
</tr>
</thead>
<tbody>
<tr>
<td>King</td>
<td>3</td>
<td>Rank 1-3</td>
<td>12</td>
</tr>
<tr>
<td>Prince</td>
<td>12</td>
<td>Rank 4-15</td>
<td>9</td>
</tr>
<tr>
<td>Duke</td>
<td>35</td>
<td>Rank 16-50</td>
<td>7</td>
</tr>
<tr>
<td>Earl</td>
<td>No Limit</td>
<td>200 kk gold</td>
<td>5</td>
</tr>
<tr>
<td>Baron</td>
<td>No Limit</td>
<td>100 kk gold</td>
<td>3</td>
</tr>
<tr>
<td>Knight</td>
<td>No Limit</td>
<td>30 kk gold</td>
<td>1</td>
</tr>
</tbody>
</table>
</body>
</html>
There are 6 noble titles available for an adventurer to acquire. To earn one of them, you have to donate a certain amount of Silver to the Empire. The more Silver you donate, the higher rank you can obtain!
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table Example</title>
<style>
table {
width: 50%;
border-collapse: collapse;
}
th, td {
border: 1px solid black;
padding: 5px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th>Title</th>
<th>Max</th>
<th>Requirement</th>
<th>Battle Power</th>
</tr>
</thead>
<tbody>
<tr>
<td>King</td>
<td>3</td>
<td>Rank 1-3</td>
<td>12</td>
</tr>
<tr>
<td>Prince</td>
<td>12</td>
<td>Rank 4-15</td>
<td>9</td>
</tr>
<tr>
<td>Duke</td>
<td>35</td>
<td>Rank 16-50</td>
<td>7</td>
</tr>
<tr>
<td>Earl</td>
<td>No Limit</td>
<td>200 kk gold</td>
<td>5</td>
</tr>
<tr>
<td>Baron</td>
<td>No Limit</td>
<td>100 kk gold</td>
<td>3</td>
</tr>
<tr>
<td>Knight</td>
<td>No Limit</td>
<td>30 kk gold</td>
<td>1</td>
</tr>
</tbody>
</table>
</body>
</html>
Powered by CuteNews