-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopy+paste.html
45 lines (41 loc) · 875 Bytes
/
copy+paste.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
<!-- Fullscreen Grid -->
<div class="fsgrid">
<div class="gridhead color1"></div>
<div class="gridleft color4"></div>
<div class="gridmain color3"></div>
<div class="gridright color4"></div>
<div class="gridfoot color2"></div>
</div>
<br>
<!-- Table -->
<table>
<caption>caption</caption>
<thead>
<tr>
<th>1</th>
<th>2</th>
<th>3</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</tfoot>
</table>
<!-- Form -->
<form action="https://httpbin.org/post" method="post">
<label for=""></label>
<input id="" type="" name="">
<br>
<input type="submit" name="submit">
</form>