free html editor creator -
05-23-2005
, 10:29 AM
Hi,
I am looking for a free html, + editor, creator.
The two I see that aren't to bad are composer from mozilla and html kit. Is
there a better free one out there?
Oh, and while we are at it.
How do you take and create a back and next button using <ol> tags to keep
track of a series of web pages?
The only way I see is to use java script
<script language="JavaScript" type="text/javascript">
<!--
function goHist(a)
{
history.go(a);
}
//-->
</script>
<a href="javascript:goHist(-1)"><img src="bfs1-1.gif" alt="Back"
style="border: 0px solid ; width: 45px; height: 25px;"></a> <a
href="javascript:goHist(1)"><img src="bfs1-2.gif" alt="Forward"
style="border: 0px solid ; width: 45px; height: 25px;"></a>
thanks in advance. |