-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassets.html
67 lines (66 loc) · 1.68 KB
/
assets.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Royal Kingdom of Colchis | royal assets</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<div class="nav">
<a href="index.html" class="logo">
<img src="css/img/logo-crown.png" alt="CrownLogo">
</a>
<ul class="nav-links">
<li class="nav-item"><a href="index.html">Home</a></li>
<li class="nav-item"><a href="royal-familly.html">Royal familly</a></li>
<li class="nav-item"><a href="assets.html">Royal assets</a></li>
<li class="nav-item"><a href="contact.html">Contact Us</a></li>
</ul>
</div>
</header>
<section id="royalAssets">
<div class="panel">
<h2>The Kingdom's royal assets</h2>
<table>
<thead>
<tr>
<th>Asset name</th>
<th>Number</th>
<th>Worth</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sword</td>
<td>102</td>
<td>4578 lori</td>
</tr>
<tr>
<td>Armor</td>
<td>345</td>
<td>7841 lori</td>
</tr>
<tr>
<td>Horses</td>
<td>245</td>
<td>98745 lori</td>
</tr>
<tr>
<td>Shield</td>
<td>479</td>
<td>15478 lori</td>
</tr>
</tbody>
</table>
</div>
</section>
<div id="footer">
<div class="footer">
<p>Copyright ©. All Rights Reserved.</p>
<span class="emoji">🐘</span>
</div>
</div>
</body>
</html>