-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (36 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Remark</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="section">
<div class="box1">
<h3 class="content">user name</h3>
</div>
<div class="box1">
<input id="usernameInput" type="text" />
</div>
<div class="box1">
<h3 class="content">comment content</h3>
</div>
<div class="box1">
<input id="commentInput" type="text" />
</div>
<div class="box1">
<button id="submitBtn" class="sub">提交</button>
</div>
</div>
<div class="commentSection">
</div>
<div class="pageSection">
<button id="prevBtn" class="pageBtn">上一页</button>
<span id="pageInfo" class="pageNum">1/1</span>
<button id="nextBtn" class="pageBtn">下一页</button>
</div>
<script src="script.js"></script>
</body>
</html>