-
Notifications
You must be signed in to change notification settings - Fork 0
/
royal-familly.html
98 lines (97 loc) · 3.66 KB
/
royal-familly.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Royal Kingdom of Colchis | royal familly</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="royalFamilly">
<div class="panel">
<h2>The royal familly</h2>
<div class="flex-container">
<div>
<img src="css/img/avatar/king.jpg" alt="Queen" width="200" />
<p class="familly-title">King Aeetes</p>
<div class="familly-tab">
<table>
<thead>
<tr>
<th>Age</th>
<th>Localisation</th>
</tr>
</thead>
<tbody>
<tr>
<td>46</td>
<td>Colchide</td>
</tr>
</tbody>
</table>
</div>
</div>
<div>
<img src="css/img/avatar/princess.jpg" alt="King" width="200" />
<p class="familly-title">Princess Madeas</p>
<div class="familly-tab">
<table>
<thead>
<tr>
<th>Age</th>
<th>Localisation</th>
</tr>
</thead>
<tbody>
<tr>
<td>28</td>
<td>Colchide</td>
</tr>
</tbody>
</table>
</div>
</div>
<div>
<img src="css/img/avatar/queen.jpg" alt="Princess" width="200" />
<p class="familly-title">Queen's Idyia</p>
<div class="familly-tab">
<table>
<thead>
<tr>
<th>Age</th>
<th>Localisation</th>
</tr>
</thead>
<tbody>
<tr>
<td>49</td>
<td>Colchide</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<div id="footer">
<div class="footer">
<p>Copyright ©. All Rights Reserved.</p>
<span class="emoji">🐘</span>
</div>
</div>
</body>
</html>