-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathless.html
More file actions
58 lines (55 loc) · 1.66 KB
/
less.html
File metadata and controls
58 lines (55 loc) · 1.66 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no;" name="viewport" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Less</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<ul class="list-item">
<li class="item-1"><a href="javascript:;">1</a></li>
<li class="item-2"><a href="javascript:;">2</a></li>
<li class="item-3"><a href="javascript:;">3</a></li>
<li class="item-4"><a href="javascript:;">4</a></li>
<li class="item-5"><a href="javascript:;">5</a></li>
<li class="item-6"><a href="javascript:;">6</a></li>
</ul>
<input type="text">
<textarea name="" id="" cols="30" rows="10" placeholder="6666"></textarea>
<select name="" id="">
<option value="">+666</option>
<option value="">+666</option>
<option value="">+666</option>
</select>
<button type="reset">重置</button>
<label>
<input type="checkbox" name="" id="" value="1">1
</label>
<label><input type="radio" name="" id="">44444</label>
<fieldset>5555555</fieldset>
<img width="300" height="300" src="" alt="无法显示">
<address>555</address>
<code>javascript</code>
<table>
<thead>
<tr>
<td>555</td>
</tr>
</thead>
<tbody>
<tr>
<td>6666</td>
</tr>
</tbody>
</table>
<small>小字体</small>
<pre>
<code>
<var>index = 0</var>;
</code>
</pre>
<kbd>quit</kbd>
</body>
</html>