-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
71 lines (70 loc) · 2.98 KB
/
options.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
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>웨않되 - 한국어 오타 수정 필터</title>
<script type="text/javascript" src="lib/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="lib/jquery.csv.js"></script>
<script type="text/javascript" src="options.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" />
<style>
.radio_btn {
padding-right: 5px;
}
th:nth-child(1) {
width: 60px;
}
th:nth-child(2) {
width: 150px;
}
</style>
</head>
<body style="background-color: #f6f8fa; margin-top: 50px;">
<section style="width: 1000px; float: none; margin: 0 auto;">
<div class="text-center">
<h1>웨않되 - 한국어 오타 수정 필터</h1>
<p>웹페이지에 있는 한국어 맞춤법과 오타를 자동으로 수정해줍니다.</p>
</div>
<div>
<div class="text-center">
<h2>소개</h2>
<p>
웹에서 블로그 글이나 뉴스 기사를 볼 때, 맞춤법와 오타 때문에 불편하지 않나요? <br />
<strong>"웨않되 - 한국어 오타 수정 필터"</strong>를 통해 그런 불편함을 해결해보세요!!
</p>
</div>
<div style="width: 450px; float: none; margin: 0 auto;">
<h3>지원하는 맞춤법 교정 목록</h3>
<div style="padding-left: 5px;">
<span class="radio_btn"><input id="select_all" type="radio" name="checkList" value="select_all" /> <b>전체목록</b></span>
<span class="radio_btn"><input id="noun" type="radio" name="checkList" value="noun" /> 명사</span>
<span class="radio_btn"><input id="verb" type="radio" name="checkList" value="verb" /> 용언</span>
<span class="radio_btn"><input id="adverb" type="radio" name="checkList" value="adverb" /> 부사</span>
</div>
<table id="ErrataTable" class="table table-hover">
<thead>
<th>#</th>
<th>Errata</th>
<th>Correction</th>
</thead>
</table>
</div>
</div>
<div></div>
<div class="text-center">
<h2>문의하기</h2>
<p>오류 접수 및 기능 제안은 아래의 메일로 문의해주세요.</p>
<a href="mailto:[email protected]">[email protected]</a>
</div>
</section>
<footer style="background-color: #e7e7e7; margin-top: 30px; padding-top: 20px; padding-bottom: 15px;">
<div class="text-center" style="padding-bottom: 5px;">
<a href="https://github.com/BlueHorn07" target="_blank"><img height="32" width="32" src="https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/github.svg" /></a>
</div>
<div class="text-center">
©2020, bluehorn07
</div>
</footer>
</body>
</html>