-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 1.5 KB
/
index.html
File metadata and controls
52 lines (49 loc) · 1.5 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jumons Original Site</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="./template.js"></script>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<div id="header"></div>
<script>header('./');</script>
<div class="container">
<h1>
Home
</h1>
<table class="table table-striped">
<thead>
<tr>
<th>Title</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<!-- <tr>
<td><a href="games/Blockout/" class="widelink">ブロック崩しゲーム</a></td>
<td>Blockout Game</td>
</tr> -->
<tr>
<td><a href="games/Piano/" class="widelink">ピアノ(sample)</a></td>
<td>Is this a Piano?</td>
</tr>
<tr>
<td><a href="kyopro/" class="widelink">競プロ用ツール</a></td>
<td>Tools of kyopro</td>
</tr>
<tr>
<td><a href="TestPage/" class="widelink">HTML勉強用</a></td>
<td>Test Page</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>