<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog d&#039;Edgar FOURNIVAL &#187; iframe</title>
	<atom:link href="http://edgar-fournival.fr/blog/tag/iframe/feed/" rel="self" type="application/rss+xml" />
	<link>http://edgar-fournival.fr/blog</link>
	<description>Programmation, jeux, etc...</description>
	<lastBuildDate>Mon, 31 Aug 2009 08:16:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Liens vers une frame</title>
		<link>http://edgar-fournival.fr/blog/liens-vers-une-frame/</link>
		<comments>http://edgar-fournival.fr/blog/liens-vers-une-frame/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 16:27:41 +0000</pubDate>
		<dc:creator>Edgar</dc:creator>
				<category><![CDATA[Informatique]]></category>
		<category><![CDATA[cadre]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[frame]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[lien]]></category>
		<category><![CDATA[target]]></category>

		<guid isPermaLink="false">http://edgar-fournival.fr/blog/?p=3</guid>
		<description><![CDATA[Dans cet article je vais vous expliquer comment faire un lien dans une frame grâce à l'HTML.]]></description>
			<content:encoded><![CDATA[<p>Bonjour,</p>
<p>Aujourd&#8217;hui, beaucoup de personnes se posent la question : comment réaliser un lien renvoyant vers une frame (ou iFrame) présente dans la page ? Eh bien c&#8217;est très simple, il suffit d&#8217;utiliser la propriété HTML <span style="font-size: 13px; font-family: monospace;">target=&quot;&quot;</span>.<br />
<br/><br/><br />
En voici un exemple :</p>
<div style="border: 1px solid Black; padding: 5px; margin: 5px; text-align: center;">
<iframe src="about:blank" name="maFrame" height="200" width="400"></iframe><br />
<a href="http://www.google.fr/" target="maFrame">Google</a> | <a href="http://www.yahoo.fr/" target="maFrame">Yahoo</a></div>
<p><br/><br />
Pour réaliser cela, commençons pas créer notre page HTML :</p>
<pre>&lt;html&gt;
    &lt;head&gt;
        &lt;title&gt;Exemple de page avec liens vers une frame&lt;/title&gt;
    &lt;/head&gt;
    &lt;body&gt;
    &lt;/body&gt;
&lt;/html&gt;</pre>
<p><br/><br />
Plaçons-y maintenant notre iFrame en y incorporant nos liens :</p>
<pre>&lt;html&gt;
    &lt;head&gt;
        &lt;title&gt;Exemple de page avec liens vers une frame&lt;/title&gt;
    &lt;/head&gt;
    &lt;body&gt;
        &lt;iframe src="about:blank" name="maFrame" height="200" width="400"&gt;&lt;/iframe&gt;&lt;br /&gt;
        &lt;a href="http://www.google.fr/" target="maFrame"&gt;Google&lt;/a&gt; |
        &lt;a href="http://www.yahoo.fr/" target="maFrame"&gt;Yahoo&lt;/a&gt;
    &lt;/body&gt;
&lt;/html&gt;</pre>
<p><br/><br/><br />
Voila, le résultat est le même que dans le cadre au dessus de ce code. A bientôt pour de nouvelles astuces.</p>
]]></content:encoded>
			<wfw:commentRss>http://edgar-fournival.fr/blog/liens-vers-une-frame/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
