-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 925 Bytes
/
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
<!DOCTYPE html>
<html lang="ja-JP">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./style.css" rel="stylesheet">
<script src="./script.js"></script>
<title>WebBingo</title>
</head>
<body>
<h1>WebBingo</h1>
<button id="furu">ガラガラするっす</button>
<br>
<button id="search">検索</button>
<br>
<br>
<div class="box now">
<span id="now">
<br>
</span>
</div>
<br>
<br>
<!-- 数の履歴 -->
<div class="box ippai">
<span id="numbers"></span>
<br>
</div>
<br>
<div class="box ippai">
数の範囲(どっちも含む)
<br>
<input type="number" id="saisyou" value="1" class="num" min="0" max="100">~<input type="number" id="saidai" value="75" class="num" min="0" max="99">
</div>
</body>
</html>