forked from WickyNilliams/LinkChecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.html
48 lines (42 loc) · 1.65 KB
/
example.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
46
47
48
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>LinkChecker example</title>
</head>
<body>
<h1>LinkChecker test page</h1>
<h2>ID's</h2>
<ul>
<li><a href="#found">Found</a></li>
<li><a href="#broke">Broke</a></li>
<li><a href="#brokeAgain">Broke</a></li>
</ul>
<h2>URL's</h2>
<ul>
<li><a href="brokedjkldgfdlkgjdflksjgldfksjgldfksjgdfslkgjsdflkgjfdslkj.html">broke</a></li>
<li><a href="http://localhost:82/works.html">works</a></li>
<li><a href="blah.html">broke</a></li>
<li><a href="found.html">works</a></li>
<li><a href="found.html">works 2</a></li>
<li><a href="http://www.google.com/">google</a></li>
<li><a href="broke.html">broke</a></li>
<li><a href="http://localhost:82/works.html">works</a></li>
<li><a href="blah.html">broke</a></li>
<li><a href="found.html">works</a></li>
<li><a href="found.html">works 2</a></li>
<li><a href="http://www.google.com/">google</a></li>
<li><a href="broke.html">broke</a></li>
<li><a href="http://localhost:82/works.html">works</a></li>
<li><a href="blah.html">broke</a></li>
<li><a href="found.html">works</a></li>
<li><a href="found.html">works 2</a></li>
<li><a href="http://www.google.com/">google</a></li>
</ul>
<p id="found">This should be found!</p>
<p id="borke">This ID has a spelling mistake</p>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js"></script>
<script type="text/javascript" src="src/LinkChecker.js"></script>
<script type="text/javascript" src="src/LinkChecker.UI.js"></script>
</body>
</html>