<html>
<head>
<script>
var count = 6;
var time = setInterval(countdown, 1000);
function countdown() {
count = count - 1;
var cx = document.getElementById("cdown");
if (count < 0) {
count = 5
}
cx.innerHTML = count;
}
</script>
<body>
<p id="cdown">5</p>
</body>
</html>
This is a script for a count down from 5 to 0.
The numbers are very small on the website , how can I increase the size of the countdown numbers to extra large. You can see it on my page at http://www.giveaeuro.com and the numbers are tiny