CoolFace
Apppublic

Fredfille/test_appli_maths

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
index.html26 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="fr">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>Exercices de Maths</title>7    <link rel="stylesheet" href="https://fredfille-test-appli-maths.static.hf.space/styles.css">8</head>9<body>10   11    <div class="container">12        <h1>Exercices de Maths</h1>13        <p>Bienvenue sur notre site d'exercices de maths pour les élèves de 12 ans.</p>14 15        <div class="exercise">16            <h2>Exercice de Multiplication</h2>17            <p id="question">Quelle est la réponse à cette multiplication : <span id="num1">2</span> x <span id="num2">3</span> ?</p>18            <input type="number" id="answer" placeholder="Votre réponse">19            <button onclick="checkAnswer()">Vérifier</button>20            <p id="feedback"></p>21        </div>22    </div>23 24   <script src="https://fredfille-test-appli-maths.static.hf.space/script.js"></script>25</body>26</html>