Questions sur le recaptcha

matheo0003 Messages postés 8 Date d'inscription   Statut Membre Dernière intervention   -  
theketur55 Messages postés 117 Date d'inscription   Statut Membre Dernière intervention   -
Bonjour,
J'aimerais sur mon site html intégrer un recaptcha (google de préférence).
Le but est que il faut que la personne valide le captcha pour cliquer sur un lien de redirection (ex: index.html).
Merci et bonne journée.

1 réponse

theketur55 Messages postés 117 Date d'inscription   Statut Membre Dernière intervention   8
 
<!DOCTYPE html>
<html>
<head>
<title>Les Bases en HTML</title>
<meta charset="utf-8"
</head>
<body>
<!--Lien Externe-->
<p>Cliquez <a href="https://fr.wikipedia.org/wiki/Accueil">ICI</a> Pour Vous Rendre à l'accueil de Wikipédia</p>
</body>
</html>

0
theketur55 Messages postés 117 Date d'inscription   Statut Membre Dernière intervention   8
 
comme sa?
0
theketur55 Messages postés 117 Date d'inscription   Statut Membre Dernière intervention   8
 
ou y'a sa

<!DOCTYPE html>
<html>
<head>
<title>Page De Départ</title>
<meta charset="utf-8">
</head>
<body>
<h1>Page De Départ</h1>
<p>Lien Vers <a href="milieu.html" target="_blank">La Page Milieu</a></p>
<p>Lien Vers <a href="sous/sous.html" target="_blank">La Page Sous</a></p>
<p>Lien Vers <a href="../parent.html" target="_blank">La Page Parent</a></p>

</body>
</html>
0
theketur55 Messages postés 117 Date d'inscription   Statut Membre Dernière intervention   8
 
0