-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
75 lines (70 loc) · 3.95 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns"
crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100&display=swap" rel="stylesheet">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"
integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>About Hana Kana</title>
</head>
<body>
<div class="container">
<ul class="nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Game Page</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="about.html">About Hana Kana</a>
</li>
<li class="nav-item">
<a class="nav-link" href="dojo.html">Training Dojo</a>
</li>
</ul>
<div class="card">
<div class="card-body">
<img src="https://i.imgur.com/ErzqJlg.jpg" class="img-fluid rounded card-img-top" alt="Responsive image">
</div>
<div class="flex-grow-1 ml-3 mr-3 card-title">
<p>Hana (花)is the Japanese word for flower. Katakana (ハナ), Hiragana (はな)<br>
This project was made as a tribute to Hana Kimura, who first inspired my life-changing journey to
learn Japanese. As learning Kana is often the first step in learning Japanese, I thought it would be
fitting to name this project in Hana's honour.
</p>
<p>
Hana was a professional wrestler who crossed over into the mainstream in Japan, before taking her
own life on May 23, 2020 after being mercilessly abused online.
The situation surrounding the death of Hana represents a much larger problem that we must solve
together. The internet and social media should be used as platforms to support eachother, instead of
destroying one another. We must choose to be better than that. The social media companies must
choose to be better than that.
</p>
<p>
Hana used the catchphrase, "Minna chigatte, minna ii" (みんなちがって、みんないい) which translates to "Everyone
is different, everyone is good." (she preferred "everyone is special" in English.) Please be kind to
eachother, and please don't forget Hana. Forever our funky leader, yes sir!
</p>
<p>
If you are able, please support the "Remember Hana" initiative to help eradicate cyber bullying by
visiting <a href="https://www.rememberhana.com">rememberhana.com</a> or purchasing one of her
t-shirts at <a href="https://www.prowrestlingtees.com/wrestler-t-shirts/hanakimura.html">Hana
Kimura's Pro Wrestling Tees store</a>
</p>
<p>
"Flowers never pick themselves"</p>
</div>
</div>
</div>
</body>
</html>