-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.21 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Double Loop</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<section class="container m-3 text-center">
<h1 id="double-loop" class="mb-4 base-color">九九の表作成</h1>
<div class="row m-3 align-items-center">
<div id="i-index-area" class="col-1">i=</div>
<div id="j-index-area" class="col-1">j=</div>
<div class="col-3">a = [1, 2, 3, 4, 5, 6, 7, 8, 9]</div>
<div class="col-7">
<button id="double-loop-start" type="button" class="btn btn-primary float-end">start</button>
</div>
</div>
<div id="table-area" class="m-3"></div>
</section>
<script src="js/double-loop.js"></script>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</body>
</html>