Tell me more ×
Webmasters Stack Exchange is a question and answer site for pro webmasters. It's 100% free, no registration required.

I developed an online exam using .net and now I want to send score to mail. But I want it look like a certificate. How should I design it, or alternatively, are there any template designs available

share|improve this question
This question has been reopened on Stack Overflow, stackoverflow.com/questions/5800347/how-to-design-scoreboard – RandomBen May 5 '11 at 17:08

migrated from stackoverflow.com Apr 28 '11 at 3:18

closed as not a real question by John Conde May 5 '11 at 13:23

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

<style type="text/css">
/*<![CDATA[*/
<!--
a {text-decoration:none; font-size: 150pt}
a:link {color: blue;}
a:visited {color: blue;}
a:hover {color: blue;}
a:active {color: blue;}//-->
/*]]>*/
</style>

<script type="text/javascript">
//<![CDATA[
var x=0;

function up() {
    ++x;
    y = x.toString();
        if (y < 10) {
        y = "0"+y;
    }
    document.getElementById('tens').innerHTML = y.substr(0,1);
    document.getElementById('ones').innerHTML = y.substr(1);
}
function down() {
    --x;
    y = x.toString();
        if (y < 10) {
        y = "0"+y;
    }
    document.getElementById('tens').innerHTML = y.substr(0,1);
    document.getElementById('ones').innerHTML = y.substr(1);
}
//]]>
</script>

try that

<a href="#" id="tens" onmousedown="down()" name="tens">0</a><a href="#" id="ones" onmousedown="up()" name="ones">0</a>
share|improve this answer