1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Mes tests ! </title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!-- en-tete du document -->
<script type="text/javascript" src="script.js"></script>
</head>
<body> <!-- corps du document -->
<a href="#" onclick="alert((multiplier(chiffre1,chiffre2)));">Multiplier</a>
<a href="#" onclick="alert((addition(chiffre1,chiffre2)));">Addition</a>
<a href="#" onclick="alert((soustraction(chiffre1,chiffre2)));">Soustraction</a>
<a href="#" onclick="alert((division(chiffre1,chiffre2)));">Division</a>
</body>
</html> |