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 90 91 92 93 94 95 96 97 98 99 100 101
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Free For All Links Demo</title>
<link rel="stylesheet" type="text/css" href="/css/nms.css" />
</head>
<body>
<h1>Free For All Links Demo</h1>
<p>Below, you will see a list of our existing links database.</p>
<p>You can use the form provided to add links to our database.</p>
<hr />
<!-- These next two lines will be replaced by the script -->
<!--number--><b>There are <i>0</i> links on this page.</b><br />
<!--time--><b></b><hr />
<form method="post" action="http://your.domain.com/cgi-bin/ffa.pl">
Title: <input type="text" name="title" size="30" /><br />
URL: <input type="text" name="url" size="55" /><br />
Section to be placed in:
<select name="section">
<option>
Business
</option>
<option>
Computers
</option>
<option>
Education
</option>
<option>
Entertainment
</option>
<option>
Government
</option>
<option>
Personal
</option>
<option selected="selected">
Miscellaneous
</option>
</select>
<br />
<input type="submit" value="Add" /> * <input type="reset" />
</form>
<hr />
Categories:<br />
[ <a href="#business">Business</a> |
<a href="#computers">Computers</a> |
<a href="#education">Education</a> |
<a href="#entertainment">Entertainment</a> |
<a href="#government">Government</a> |
<a href="#personal">Personal</a> |
<a href="#misc">Misc</a> ]
<hr />
<a id="business" name="business">Business</a>
<ul>
<!--busi-->
</ul>
<a id="computers" name="computers">Computers</a>
<ul>
<!--comp-->
</ul>
<hr />
<a id="education" name="education">Education</a>
<ul>
<!--educ-->
</ul>
<hr />
<a id="entertainment" name="entertainment">Entertainment</a>
<ul>
<!--ente-->
</ul>
<hr />
<a id="government" name="government">Government</a>
<ul>
<!--gove-->
</ul>
<hr />
<a id="personal" name="personal">Personal</a>
<ul>
<!--pers-->
</ul>
<hr />
<a id="misc" name="misc">Miscellaneous</a>
<ul>
<!--misc-->
</ul>
<hr />
<hr />
</body>
</html>
|