-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (55 loc) · 2.42 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
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>技大祭からの挑戦状</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<header>
<img src="images/謎解き企画_ロゴ.png" alt="タイトルロゴ" width="85%" vspace="32px" />
<h2>はじめに</h2>
<p>ようこそ,技大祭へ</p>
<p>技大祭からの挑戦状を受け取った君は</p>
<p>技大に散りばめられた謎を解き明かそう!</p>
<h2>やり方</h2>
<ol>
<li>パンフレットにあるクロスワードに答えを埋めていこう</li>
<li>クロスワードに指定された文字で答え合わせをしよう</li>
<li>答えをサイトに入力しよう</li>
</ol>
</header>
<section class="answer">
<h1>ANSWER</h1>
<p>答えを入力しよう</p>
<div class="input-container">
<!-- テキストボックスと結果表示エリア -->
<input type="text" id="keywordInput" placeholder="ここに入力" />
<div id="answerResult"></div>
<!-- 統合されたボタン -->
<button id="actionButton">送信</button>
<!-- 新しいボタンが追加されるエリア -->
<div id="buttonContainer" class="button-container" width="50%" vspace="56px"></div>
</div>
</section>
<section class="hint">
<h1>HINT</h1>
<p>問題番号を入力してヒントをもらおう <br>(半角数字で番号を入れてください)</p>
<div class="input-container">
<input type="text" id="hintInput" placeholder="ここに入力" />
<div id="hintResult"></div>
<button onclick="checkHintKeyword()">送信</button>
</div>
</section>
<footer>
<p>〒940-2188 新潟県長岡市上富岡町1603-1</p>
<p>長岡技術科学大学</p>
<p>nutfes.shikobu@gmail.com</p>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="script.js"></script>
</body>
</html>