Files
parcoursup/parcoursup-app/index.html
T

16 lines
485 B
HTML
Raw Normal View History

2026-03-22 13:25:37 +01:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Parcoursup but coded by an idiot</title>
</head>
<body>
<h1>Explorateur de formations</h1>
<input type="text" id="requete" placeholder="Ex: informatique, médecine...">
<button id="entrerRequete">Lancer la recherche</button>
<div id="affichageResultats"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>