1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| <!DOCTYPE html>
<html>
<head>
<title>Test Affichage Iframes avec Balises</title>
<meta charset="ISO-8859-1">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<br>
<div>
Test Iframe :<br>
<iframe height="250px" id="iframe" scrolling="yes" width="100%" src="http://www.med.univ-rennes1.fr/~poulique/cours/html/htmlv2.pdf"></iframe>
</div>
<div>
Test Object :<br>
<object data="http://www.med.univ-rennes1.fr/~poulique/cours/html/htmlv2.pdf" type="application/pdf" width="100%" height="200">
alt : <a href="fichier.pdf">test.pdf</a>
</object>
</div>
<div>
Test Embed :<br>
<embed src="http://www.med.univ-rennes1.fr/~poulique/cours/html/htmlv2.pdf" type="application/pdf" width="100%" height="200"></embed>
</div>
<p> un petite phrase qui ne doit pas bouger si l'on fait un zoom sur la tablette IPAD : <br>
<p> tests effectués avec chrome<br>
Page mise à jour le 25/09/2012 à 19:00<br>
<br>
</body>
</html> |
Partager