-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcharacters.html
More file actions
77 lines (75 loc) · 3.98 KB
/
characters.html
File metadata and controls
77 lines (75 loc) · 3.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ghibbys</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="/css/characters.css">
</head>
<body>
<div class="background">
<div class="content-wrapper">
<img id=logo src="/images/totoro_icon.png" alt="totoro_icon">
<h1 id="title">Ghibbys</h1>
<div class="border"></div>
<nav class="navbar">
<div class="icon"><a href="/html/form.html" class="active"><i class="fa-solid fa-user fa-xl" style="color: rgb(125, 216, 198);"></i></a></div>
<div class="icon"><a href="/html/index.html" class="active"><i class="fa-solid fa-house fa-xl" style="color: rgb(181, 230, 173);"></i></a></div>
<div class="icon"><a href="/html/movie-list.html" class="active"><i class="fa-solid fa-film fa-xl" style="color: rgb(244, 179, 180);"></i></a></div>
<div class="icon"><a href="#" class="active"><i class="fa-solid fa-search fa-xl" style="color: rgb(246, 219, 172);"></i></a></div>
<div class="icon"><a href="/html/characters.html"><img class="mononoke-icon"
src="/images/transparent-studio-ghibli-japanese-animation-hayao-miyazaki-mi-minimalist-person-in-blue-and-white-clothing661cc2d02662c8.09773967.png"
alt=""height="42px" width="42px"></a></div>
</nav>
<div class="characters-box">
<table class="characters-table" border="1">
<tr>
<th></th>
<th></th>
<th>Characters</th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
<tr>
<th>Spirited Away</th>
<td>Chihiro Ogino</td>
<td>Yubaba</td>
<td>No-Face</td>
<td>Susuwatari</td>
<td>Lin</td>
<td>Boh</td>
<td>Hopping Lantern</td>
</tr>
<tr>
<th>Princess Mononoke</th>
<td>San</td>
<td>Ashitaka</td>
<td>Totoro</td>
<td>Kodama</td>
<td>Yakul</td>
<td>Moro</td>
<td>Forest Spirit</td>
</tr>
<tr>
<th>My Neighbor Totoro</th>
<td>Satsuki Kusakabe</td>
<td>Catbus</td>
<td>Totoro</td>
<td>Mei Kusakabe</td>
<td>Susuwatari</td>
<td>Kodama</td>
<td>Yasuko Kusakabe</td>
</tr>
</table>
</div>
</div>
</div>
<script src="../javascript/app.js" async defer></script>
</body>
</html>