Created
August 16, 2020 07:11
-
-
Save zprima/f0c8e3ce04b3398bf7fabe5f1a140aa7 to your computer and use it in GitHub Desktop.
page structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Kana</title> | |
<link href="https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap" rel="stylesheet"> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div class="header"> | |
<div>romaji: <span id="romaji">a</span></div> | |
<div class="hints"> | |
<div><span id="h_tip">Apple</span> </div> | |
<div><span id="k_tip">Axe</span> </div> | |
</div> | |
</div> | |
<div class="content"> | |
<div class="circle"></div> | |
<div id="hiragana" class="kana">あ</div> | |
<div id="katakana" class="kana">ア</div> | |
</div> | |
<div class="next"> | |
<button onclick="nextRandomKana();">Next</button> | |
</div> | |
<script src="app.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment