16 lines
485 B
HTML
16 lines
485 B
HTML
|
|
<!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>
|