33 lines
920 B
HTML
33 lines
920 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>支語寶</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; padding: 20px; }
|
|
table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
|
|
th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
|
|
th { background-color: #f4f4f4; }
|
|
button { margin-right: 10px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>支語寶</h1>
|
|
<table id="replacementsTable">
|
|
<thead>
|
|
<tr>
|
|
<th>原始詞語</th>
|
|
<th>替換詞語</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody></tbody>
|
|
</table>
|
|
<input type="text" id="original" placeholder="原始詞語">
|
|
<input type="text" id="replacement" placeholder="替換詞語">
|
|
<button id="addButton">新增</button>
|
|
|
|
<script src="options.js"></script>
|
|
</body>
|
|
</html> |