Stopwatch
Stop at
Start at

<!-- TWO STEPS TO INSTALL COUNT UP & DOWN:

1. Paste the specified coding into the HEAD of your HTML document
2. Put the last code into the BODY of your HTML document --> <!-- STEP ONE: Copy this code into the HEAD of your HTML document --> 
<center>
<form name="sw">
<table border="0" width="100%">
<tr align="center"> 
<td>
<table border="3" width="100%">
<tr> 
<th colspan="2">Stopwatch</th>
</tr>
<tr align="center"> 
<td>Stop at<br>
<input type="text" name="beg1" size="7" value="0:10">
</td>
<td>
<input type="button" value="Start" onClick="Up()" name="button">
</td>
</tr>
<tr align="center">
<td colspan="2"> 
<input type="text" name="disp1" size="7">
</td>
</tr>
</table>
</td>
<td> 
<input type="button" value="Start Both" onClick="Up();Down()" name="button">
</td>
<td> 
<table border="3" width="100%">
<tr align="center"> 
<td>Start at<br>
<input type="text" name="beg2" size="7" value="0:10">
</td>
<td>
<input type="button" value="Start" onClick="Down()" name="button">
</td>
</tr>
<tr align="center">
<td colspan="2"> 
<input type="text" name="disp2" size="7">
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</center>
<p>
<center>
</center>
<p> <!-- Script Size: 2.72 KB -->