Javascript Code:
< !-- Script by hscripts.com -->
<script src="hstopwatch/stopwatch-without-lap.js">
</script>
<body onload='load();'>
<table align=center>
<div align=center> Stopwatch-without-lap</div>
<tr><td><input type='text' id='disp' maxlength=12 readonly />
</td></tr>
<tr><td><button type='button' onclick='ss()' id='butt'>Start/Stop</button>
<button type='button' onclick='r()' id='butt2'>Reset</button>
</td></tr>
</table>
</body>
< !-- Script by hscripts.com -->
CSS Code:
<style type='text/css'>
#disp
{
background-color:black;
font-size: 1.75em;
color: white;
width: 6em;
font-family: "Times New Roman";
padding: 0.15em;
border-right-width:0;
}
#butt
{
font-size: 1em;
width: 5em;
font-family: "Times New Roman";
}
#butt2
{
font-size: 1em;
width: 5em;
font-family: "Times New Roman";
}
</style>
|