-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassets.html
More file actions
111 lines (98 loc) · 2.79 KB
/
Copy pathassets.html
File metadata and controls
111 lines (98 loc) · 2.79 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Web Development Tech Challenge</title>
<link href="assets/styles/style.css" rel="stylesheet" type="text/css" />
<link href="assets/styles/assets.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
</head>
<body>
<!-- HEADER -->
<header>
<h1>The Royal Kingdom of Colchis</h1>
<div class="headTitle">
<div class="arrows">
<div class="left"><img src="assets/images/arrow-right.svg" alt=""></div>
<div class="right"><img src="assets/images/arrow-right.svg" alt=""></div>
</div>
<ul>
<li class="btnClose"><button>X</button></li>
<li class="home"><img src="assets/images/home.svg" alt="icon home
"></li>
<li class="breadcrumb">assets.html</li>
<li class="icon_search"><img src="assets/images/icon_search.svg" alt="icon search"></li>
</ul>
</div> <!-- fin div.headTitle -->
<!-- NAV -->
<nav>
<ul>
<li></li>
<li><a href="index.html">Home</a></li>
<li><a href="royal-family.html" target="_blank">Royal Family</a></li>
<li><a href="#" target="_blank">Royal Assets</a></li>
<li><a href="contact.html" target="_blank">Contact Us</a></li>
</ul>
</nav>
<!-- fin nav -->
</header>
<!-- fin header -->
<main>
<!-- Kingdom's Royal Assets or Sporting Results table -->
<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>Stobies</td>
<td>42</td>
<td>6 000 000 lari</td>
</tr>
<tr>
<td>Castles</td>
<td>4</td>
<td>24 000 000 lari</td>
</tr>
<tr>
<td>Guards</td>
<td>10 000</td>
<td>10 000 000 lari</td>
</tr>
<tr>
<td>Wagons</td>
<td>18</td>
<td>4 000 lari</td>
</tr>
<tr>
<td>Livestock</td>
<td>42</td>
<td>51 942 lari</td>
</tr>
<tr>
<td>Armor</td>
<td>997 000</td>
<td>11 000 000 lari</td>
</tr>
<tr>
<td>Canon</td>
<td>99</td>
<td>110 000 000 lari</td>
</tr>
</tbody>
</table>
</main>
<footer></footer>
<!-- Connect the Javascript file -->
<script src="script.js"></script>
</body>
</html>