Chaker Nguili
Développeur Full Stack
© 2025 All rights reserved.
HTML, CSS, & JavaScript – Certification Course for Beginners 7
Lessons:
- 31. HTML Iframes
HTML Code:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Iframe Demo</title>
</head>
<body>
<iframe src="http://www.bing.fr" width="100%" height="400">
<p>Your browser does not support iframe</p>
</iframe>
<iframe src="http://www.bing.com" width="100%" height="400">
<p>Your browser does not support iframe</p>
</iframe>
</body>
</html>