-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 881 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CommonUtil Demo</title>
<link rel="stylesheet" href="./assets/css/main.css" />
<script defer src="https://polyfill.io/v3/polyfill.min.js?features=Promise%2CPromise.prototype.finally"></script>
<script defer src="./assets/js/commonUtil.js"></script>
<script defer src="./assets/js/main.js"></script>
</head>
<body>
<div id="app">
<nav id="nav">
<h1>CommonUtil</h1>
<div class="form_group">
<input type="search" name="search" id="search" placeholder="搜尋關鍵字" />
<label for="search">搜尋關鍵字</label>
</div>
<ul id="navList"></ul>
</nav>
<main id="main"></main>
</div>
</body>
</html>