You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<title>Calcul de l'IR au Maroc</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<h1>Calcul de l'IR B.BOUAOUAM</h1>
<label>RGI:</label>
<input type="number" id="rgi" min="0"><br>
<label>Personnes à charge:</label>
<input type="number" id="pac" min="0" max="6"><br>
<label>Somme à déduire:</label>
<input type="text" id="somme" readonly><br>
<label>Taux:</label>
<input type="text" id="taux" readonly><br>
<label>IR NET:</label>
<input type="text" id="ir" readonly><br>
<button onclick="calculer()" >Calculer </button>
</div>
<script src="script.js"></script>
</body>
</html>

You might also like