-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
46 lines (46 loc) · 1.78 KB
/
popup.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>Document</title>
<script src="lib/jquery-3.5.1.min.js"></script>
<script src="popup.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" />
<style>
body {
min-width: 200px;
min-height: 110px;
}
h1 {
font-size: 18px;
}
h2 {
font-size: 14px;
}
</style>
</head>
<body>
<section class="text-center" style="float: none; margin: 0 auto;">
<h1>웨않되</h1>
<h2>한국어 오타 자동 수정</h2>
<div style="padding-left: 26px; padding-bottom: 10px; float: none; margin: 0 auto;">
<div class="text-left">
<p><input id="check_all" type="checkbox" name="checkList" value="check_all" /> <b>전체선택</b></p>
<p><input id="noun" type="checkbox" name="checkList" value="noun" /> 오타 목록 - 명사</p>
<p><input id="verb" type="checkbox" name="checkList" value="verb" /> 오타 목록 - 용언</p>
<p><input id="adverb" type="checkbox" name="checkList" value="adverb" /> 오타 목록 - 부사</p>
<input id="save" type="submit" value="저장" />
</div>
</div>
<a href="/options.html" target="_blank">옵션 페이지로 이동</a>
</section>
<footer style="background-color: #e7e7e7; margin-top: 5px; padding-top: 8px; padding-bottom: 5px;">
<div class="text-center">
<a href="https://github.com/BlueHorn07" target="_blank"><img height="25" width="25" src="https://cdn.jsdelivr.net/npm/simple-icons@v3/icons/github.svg" /></a>
</div>
<div class="text-center" style="padding-top: 3px;">
©2020, bluehorn07
</div>
</footer>
</body>
</html>