-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.html
More file actions
38 lines (33 loc) · 1.15 KB
/
Copy pathinput.html
File metadata and controls
38 lines (33 loc) · 1.15 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" >
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
<title>J210 シートゥーピョー</title>
<link rel="stylesheet" href="css/main.css" />
<script src="js/input.js"></script>
</head>
<body>
<form>
<div class="field">
<canvas id="board" width="300" height="200">
Canvas bla bla.
</canvas>
</div>
<div class ="field">
<label>件名:<br />
<input id ="subject" type="text" size="30" autofocus required placeholder="件名を入力してください。"/>
</label>
</div>
<div class ="field">
<label>メモ:<br />
<textarea id ="memo" cols = "30" row = "25" required placeholder="ひとことメモを入力してください。"></textarea>
</label>
</div>
<div class="field">
<input id="save" type="submit" class="btn" value="保存"/><br />
<input id="cancel" type="reset" class="btn" value="キャンセル"/>
</div>
</form>
</body>
</html>