-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfirm.html
More file actions
97 lines (85 loc) · 4.01 KB
/
confirm.html
File metadata and controls
97 lines (85 loc) · 4.01 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>数学|詳細画面</title>
<!-- SEO(検索に出さない) -->
<meta name="robots" content="noindex, follow">
<!-- CSSとJavaScriptのロード -->
<link rel="stylesheet" href="./src/css/confirm.css">
<link rel="stylesheet" href="./src/common/css/header.css">
<script src="./src/common/js/color-mode.js" defer></script>
<script src="./src/common/js/header.js" defer></script>
<script src="./src/js/confirm.js" defer></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=M+PLUS+1p:wght@700&display=swap" rel="stylesheet">
<!-- ファビコン -->
<link rel="icon" href="./meta/favicon.ico">
<!-- OGP設定 -->
<meta property="og:type" content="website">
<meta property="og:site_name" content="数学練習サイト">
<meta property="og:title" content="数学練習サイト|正負の計算">
<meta property="og:description" content="正負の計算問題を自動生成。履歴・再チャレンジ・使い方の機能あり。">
<meta property="og:url" content="https://donneko.github.io/T_2/">
<meta property="og:image" content="https://donneko.github.io/T_2/meta/ogp.png">
<meta property="og:image:secure_url" content="https://donneko.github.io/T_2/meta/ogp.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta property="og:image:alt" content="数学練習サイトのプレビュー画像">
<meta property="og:locale" content="ja_JP">
<!-- Twitter (X) -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="数学練習サイト|正負の計算">
<meta name="twitter:description" content="正負の計算問題を自動生成。履歴・再チャレンジ・使い方の機能あり。">
<meta name="twitter:image" content="https://donneko.github.io/T_2/meta/ogp.png">
<!-- 正規URL -->
<link rel="canonical" href="https://donneko.github.io/T_2/">
<!-- SEO設定 -->
<meta name="description" content="正負の計算問題を自動生成。履歴・再チャレンジ・使い方の機能でテンポ良く練習できます。">
</head>
<body id="color-mode" class="mode--dark">
<header class="Close" id="header">
<button id="end" type="button">ホームに戻る</button>
<h1 id="title">詳細画面</h1>
<div class="header-info--box">
<button id="menu" type="button" aria-label="メニューを表示する" aria-expanded="false">
<span></span>
<span></span>
<span></span>
</button>
</div>
<nav id="menu_box">
<a href="./index.html">ホーム画面</a>
<a href="./site/info.html">使い方</a>
</nav>
</header>
<main id="top">
<!-- パーセント部分 -->
<section class="ratio">
<div class="ratio--box">
<div class="ratio__ratios">
<span id="Correct-Bar"></span>
</div>
<div class="ratio__info">
<p id="Correct-Rate">正答率:50%</p>
<p id="Miss-Rate">ミス率:50%</p>
</div>
</div>
</section>
<!-- リンク(ボタン)部分-->
<nav>
<button id="BackToHome" type="button">ホームに戻る</button>
<button id="ViewTheIssue" type="button">問題内容を見る</button>
</nav>
<!-- 回答内容(JSで作成) -->
<section class="answer" id="history">
</section>
</main>
<footer id="top-link">
<a href="#top" aria-label="ページ上部へ移動"></a>
</footer>
</body>
</html>