-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.29 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:[email protected]&family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
</style>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kana Go</title>
<link rel="stylesheet" href="style.css" />
</head>
<body style="margin: 0px" oncontextmenu="return false;">
<section class="header">
<img src="logo.png" alt="logo" />
<h1>Kana Go</h1>
<a href="https://github.com/developers-together/Kana-Go.github.io"
><img src="github.png" alt="Github Repo"
/></a>
</section>
<section class="body">
<div class="buttons">
<button id="hiragana">Hiragana</button>
<button id="katakana">Katakana</button>
<button id="romaji">Romaji</button>
</div>
<div class="main" id="main">
<p>Click to randomize</p>
<div class="submain">
<blockquote id="letter"></blockquote>
<div id="answer"></div>
</div>
</div>
</section>
<script type="module" src="script.js"></script>
</body>
</html>