first commit with existing project files

This commit is contained in:
Vincent Guillet
2025-07-12 11:10:38 +02:00
commit 3f5b52661a
5 changed files with 462 additions and 0 deletions

74
index.html Normal file
View File

@@ -0,0 +1,74 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Ceci est la description du site" />
<script src="partie2-etudiants.js" defer></script>
<script src="partie2-seo.js" defer></script>
<title>Titre de la page</title>
</head>
<body>
<section>
<h2>Analyse et classification des étudiants</h2>
<div>
<h3>Liste des étudiants :</h3>
<div class="students"></div>
</div>
<form>
<label style="font-weight: bold">Ajouter un étudiant :
<input id="ajouterPrenom" type="text" placeholder="Prénom">
</label>
<label>
<input id="ajouterNote" type="text" placeholder="Note">
</label>
<button id="add-student" type="submit">Ajouter</button>
</form>
<div style="margin: 25px 0"></div>
<form>
<div>
<span style="font-weight: bold"><button id="moyenne-groupe-btn"
style="margin-right: 5px; margin-bottom: 5px">Calculer</button>Moyenne du groupe : </span>
<span id="moyenne-groupe"></span>
</div>
<div>
<span style="font-weight: bold"><button id="moyenne-admis-btn"
style="margin-right: 5px">Calculer</button>Moyenne des admis : </span>
<span id="moyenne-admis"></span>
</div>
</form>
</section>
<hr style="margin: 30px 0">
<section>
<h2>Analyse SEO d'une page Web</h2>
<form>
<label>
<div>
<textarea id="zone-html" rows="10" cols="50" placeholder="Saisir du code HTML ici..."></textarea>
</div>
</label>
<label>
<input id="keyword" type="text" placeholder="Saisir un mot clé...">
</label>
<button id="analyse" type="submit">Analyser</button>
</form>
<div>
<p style="font-weight: bold">Titre de la page : <span id="page-title"></span></p>
<p style="font-weight: bold">Meta Description : <span id="page-meta-description"></span></p>
</div>
<p id="keyword-number" style="font-weight: bold"></p>
</section>
</body>
</html>