-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathindex.html
90 lines (80 loc) · 3.28 KB
/
index.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style type="text/css" media="screen">
@import "css/common.css";
@import "css/validator.css";
@import "css/documentation.css";
@import "css/validator/base.css";
</style>
<title>W3C Feed Validation Service, for Atom and RSS</title>
<script type="text/javascript" src="scripts/mootools.js"></script>
<script type="text/javascript" src="scripts/w3c-validator.js"></script>
</head>
<body>
<div id="banner">
<h1 id="title">
<a href="https://www.w3.org/"><img alt="W3C" width="110" height="61" id="logo" src="https://validator.w3.org/images/w3c.png" /></a>
<a href="./"><span>Feed Validation Service</span></a>
</h1>
<p id="tagline">Check the syntax of Atom or RSS feeds</p>
</div>
<div id="head">
</div><!-- end of "head" -->
<div id="frontforms">
<ul id="tabset_tabs">
<li><a href="#validate-by-uri"><span>Validate by</span> URI</a></li>
<li><a href="#validate-by-input"><span>Validate by</span> Direct Input</a></li>
</ul>
<div id="fields">
<fieldset id="validate-by-uri" class="tabset_content front"><legend class="tabset_label">Validate by URI</legend>
<form action="check.cgi" method="get">
<p class="instructions">
Validate a feed online:
</p>
<p>
<label title="Address of page to Validate" for="url">Address:</label>
<input name="url" id="url" type="text" size="40" />
</p>
<p class="submit_button">
<input title="Submit for validation" type="submit" value="Check" />
</p>
</form>
</fieldset>
<fieldset id="validate-by-input" class="tabset_content front"><legend class="tabset_label">Validate by direct input</legend>
<form action="check.cgi" method="post">
<p>
<label title="Paste a complete Feed (Atom, RSS) here" for="rawdata"></label>
<textarea name="rawdata" id="rawdata" rows="12" cols="75"></textarea>
<input type="hidden" name="manual" id="manual" value="1" />
</p>
<p class="submit_button">
<input title="Submit for validation" type="submit" value="Check" />
</p>
</form>
</fieldset>
</div><!-- fields -->
</div> <!-- frontforms -->
<div class="intro">
<p>This is the W3C Feed Validation Service, a free service that checks the syntax
of Atom or RSS feeds. The <a href="http://validator.w3.org/">Markup Validation Service</a> is also available if you wish to validate regular Web pages.</p>
<div id="w3c-include">
<script type="text/javascript" src="//www.w3.org/QA/Tools/w3c-include.js"></script>
</div>
</div>
<ul class="navbar" id="menu">
<li>
<a href="" accesskey="1" title="Go to the Home Page for The W3C Feed Validation Service">Home</a></li>
<li><a href="about.html" title="Information About this Service">About...</a></li>
<li><a href="whatsnew.html" title="The changes made to this service recently">News</a></li>
<li><a href="docs/" accesskey="3" title="Documentation for this Service">Docs</a></li>
</ul>
<div id="footer">
<address>
Maintained by the <a href="http://www.w3.org/QA/Tools/qa-dev">W3C qa-dev group</a><br />
This service uses the <a href="https://github.com/w3c/feedvalidator">Feed validator software</a>.
</address>
</div>
</body>
</html>