This repository has been archived by the owner on Mar 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·50 lines (43 loc) · 1.85 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="assets/favicon.ico">
<title>Extract JAN From Text</title>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1 class="display-8">Extract JAN From Text</h1>
</div>
<div class="row">
<div class="col">
<div class="form-group">
<label for="exampleFormControlTextarea1">Please input text including JAN</label>
<textarea class="form-control" id="input-text" rows="15"></textarea>
</div>
</div>
<div class="col">
<div class="form-group">
<label for="exampleFormControlTextarea1">Extraced JAN</label>
<textarea readonly class="form-control" id="output-text" rows="15"></textarea>
</div>
</div>
</div>
<p><button type="submit" class="btn btn-primary btn-lg btn-block" id="extract">Extract!</button></p>
<hr>
<p class="text-center">
🍣 Developed by Osamu Takiya 🍣
</p>
</div>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.11.3/umd/popper.min.js" integrity="sha512-JYiH1m23j3urNYABfau7C2ErmGcDS07eA+9hhuOhPFDXib3MpFQmcfPjocgHKmvbJbEf5oL5tzqti+FEgkWeAQ==" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
<script src="assets/main.js"></script>
</body>
</html>