One more thing guys
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
.hide {
display:none;
}
.show {
display:block;
}
</style>
<script type="text/javascript">
var el;
window.onload=function() {
el=document.getElementById('status');
el.onmouseover=function() {
changeText('hide','show')
}
el.onmouseout=function() {
changeText('show','hide');
}
}
function changeText(cl1,cl2) {
document.getElementById('span1').className=cl1;
document.getElementById('span2').className=cl2;
}
</script>
</head>
<body>
<center>
<font size="+5">
KEYBOARD1333 IS
<p id="status">
<span id="span1">EPIC</span>
<span id="span2" class="hide">AWESOME</span>
</p>
</font>
</center>
</body>
</html>
DO you know how I can make the Keyboard1333 is and the epic/amazing on the same line?
any help would be great
Bookmarks