-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.html
More file actions
51 lines (42 loc) · 1.03 KB
/
sample.html
File metadata and controls
51 lines (42 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
<link rel="stylesheet" href="debug.css" title="Debug Tester" type="text/css" media="screen">
<style>
body {margin-top: 50px;}
</style>
</head>
<body>
<div class="container">
<div class="hero-unit">
<h1>HTML 5 Debugger</h1>
<p>A simple CSS tag/attribute debugger.</p>
<p>
<a class="btn btn-primary btn-large" href="https://github.com/seanwalsh/html5-debugger">
Download
</a>
</p>
</div>
<div class="row">
<div class="span3">
<h2>Unsupported Tag</h2>
<acronym>acronym</acronym>
</div>
<div class="span3">
<h2>Unsupported Attribute</h2>
<a href="/" name="test">Name Test</a>
</div>
<div class="span3">
<h2>Empty Attribute</h2>
<a href="#">Empty href</a>
</div>
<div class="span3">
<h2>Unsupported by Several Browsers</h2>
<details>Details Tag</details>
</div>
</div>
</div>
</body>
</html>