Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Sauvegarder le code
Ctrl+Alt+A
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <h2>Iframe - Cible pour un Lien</h2> <iframe src="demo_iframe.html" name="iframe_a" height="300px" width="100%" title="Iframe Example"></iframe> <p><a href="https://www.w3schools.com/" target="iframe_a">W3Schools.com</a></p> <p>Lorsque l'attribut target d'un lien correspond au nom d'un iframe, le lien s'ouvrira dans l'iframe.</p> </body> </html>