<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
>
	<channel>
		<title>Dudas de Programacion &#187; Forum: HyperText Markup Language (HTML) - Recent Posts</title>
		<link>http://www.dudasprogramacion.com/forum/hypertext-markup-language-html</link>
		<description>Dudas sobre lenguajes y apis de programación</description>
		<language>en-US</language>
		<pubDate>Wed, 08 Feb 2012 04:33:50 +0000</pubDate>
		<generator>bbpress 1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.dudasprogramacion.com/search.php</link>
		</textInput>
		<atom:link href="http://www.dudasprogramacion.com/rss/forum/hypertext-markup-language-html" rel="self" type="application/rss+xml" />

		<item>
			<title>Ari_lineadcodigo on "Crear Formularios dinámicos en javascript"</title>
			<link>http://www.dudasprogramacion.com/topic/crear-formularios-dinamicos-en-javascript#post-1012</link>
			<pubDate>Sun, 08 Jan 2012 23:33:34 +0000</pubDate>
			<dc:creator>Ari_lineadcodigo</dc:creator>
			<guid isPermaLink="false">1012@http://www.dudasprogramacion.com/</guid>
			<description><p>Bueno mi pregunta era como crear formularios dinámicos en javascript con las funciones que me mostrataron en linea de código.<br />
<a href="http://lineadecodigo.com/javascript/crear-elementos-html-con-javascript/" rel="nofollow">http://lineadecodigo.com/javascript/crear-elementos-html-con-javascript/</a></p>
<p>     Despues de investegar encontre cuales eran metodos que requeria dentro de mi función en javascript para lograr resolver mi problema pero ahora mi problema es el siguiente como obtengo el valor ingresado en la caja de texto que se genero dinámica mente por el usuario para despues guardarlo en una variable en php.</p>
<p>La función que cree en javascript es la siguiente:</p>
<pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;</span>SCRIPT type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">var</span> contador<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
<span style="color: #003366; font-weight: bold;">function</span> poner<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
<span style="color: #003366; font-weight: bold;">var</span> lista <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;tipo&quot;</span><span style="color: #009900;">&#41;</span>
<span style="color: #003366; font-weight: bold;">var</span> valor <span style="color: #339933;">=</span> lista.<span style="color: #660066;">options</span><span style="color: #009900;">&#91;</span>lista.<span style="color: #660066;">selectedIndex</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">text</span>
<span style="color: #003366; font-weight: bold;">var</span> lugar <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;colocar_tipo&quot;</span><span style="color: #009900;">&#41;</span>
valor.<span style="color: #660066;">toString</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>valor<span style="color: #339933;">==</span><span style="color: #3366CC;">'Otro'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">38</span><span style="color: #339933;">;</span> contador<span style="color: #339933;">==</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	contador<span style="color: #339933;">++;</span>
<span style="color: #003366; font-weight: bold;">var</span> elemento <span style="color: #339933;">=</span> document.<span style="color: #660066;">createElement</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'input'</span><span style="color: #009900;">&#41;</span>
elemento.<span style="color: #660066;">type</span><span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text&quot;</span>
elemento.<span style="color: #000066;">name</span><span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;ntipo&quot;</span>
elemento.<span style="color: #660066;">id</span><span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;ntipo&quot;</span>
ntipo
lugar.<span style="color: #660066;">appendChild</span><span style="color: #009900;">&#40;</span>elemento<span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#125;</span><span style="color: #000066; font-weight: bold;">else</span><span style="color: #009900;">&#123;</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'colocar_tipo'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">innerHTML</span><span style="color: #339933;">=</span><span style="color: #3366CC;">''</span>
contador<span style="color: #339933;">=</span><span style="color: #CC0000;">0</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;/</span>SCRIPT<span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span></pre>
<p>Bueno en mi formulario la implemento en un select con el evento onchange</p>
<p>el código seria el siguiente:</p>
<pre class="php" style="font-family:monospace;"><span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;form id=&quot;form1&quot; name=&quot;form1&quot; method=&quot;POST&quot; action=&quot;&amp;#60;?php echo $editFormAction; ?&amp;#62;&amp;#60;?php echo $editFormAction; ?&amp;#62;&quot;&amp;#62;
</span>        <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;p&amp;#62;
</span>          <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;label for=&quot;select&quot;&amp;#62;Tipo:&amp;#60;/label&amp;#62;
</span>          <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;select name=&quot;tipo&quot; id=&quot;tipo&quot; onchange=&quot;poner()&quot;&amp;#62;
</span>            <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;option value=&quot;Zandalia&quot;&amp;#62;Zandalia&amp;#60;/option&amp;#62;
</span>            <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;option value=&quot;otro&quot;&amp;#62;Otro&amp;#60;/option&amp;#62;
</span>            <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;option value=&quot;Zapatos&quot; selected=&quot;selected&quot;&amp;#62;Zapatos&amp;#60;/option&amp;#62;
</span>            <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;option value=&quot;Tenis&quot;&amp;#62;Tenis&amp;#60;/option&amp;#62;
</span>          <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;/select&amp;#62;
</span>        <span style="color: #339933;">&amp;</span><span style="color: #666666; font-style: italic;">#60;div id=&quot;colocar_tipo&quot;&amp;#62;&amp;#60;/div&amp;#62;</span></pre>
<p>Ahora quiero saber como sacar el valor de caja de texto que estoy creado en la función poner() la cual tiene el nombre de ntipo y guardarlo en una variable en php</p>
<p>Gracias de antemano por leer y darse un tiempo para intentar ayudarme
</p></description>
		</item>
		<item>
			<title>lineadecodigo on "como enviar un formulario hecho con javascript"</title>
			<link>http://www.dudasprogramacion.com/topic/como-enviar-un-formulario-hecho-con-javascript#post-962</link>
			<pubDate>Wed, 07 Sep 2011 10:02:01 +0000</pubDate>
			<dc:creator>lineadecodigo</dc:creator>
			<guid isPermaLink="false">962@http://www.dudasprogramacion.com/</guid>
			<description><p>@cipilusca,</p>
<p>Si lo quieres enviar directamente en HTML tienes que poner el atributo name con un valor dentro de los campos input.</p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #ddbb00;">&amp;#60;</span>input name=&quot;precioplatanos&quot; value=&quot;&quot;/<span style="color: #ddbb00;">&amp;#62;</span></pre>
<p>Tienes un ejemplo de envío en <a href="http://lineadecodigo.com/html/enviar-emails-desde-una-pagina-web/" rel="nofollow">http://lineadecodigo.com/html/enviar-emails-desde-una-pagina-web/</a></p>
<p>Espero que esto te vaya ayudando.
</p></description>
		</item>
		<item>
			<title>cipilusca on "como enviar un formulario hecho con javascript"</title>
			<link>http://www.dudasprogramacion.com/topic/como-enviar-un-formulario-hecho-con-javascript#post-956</link>
			<pubDate>Sun, 21 Aug 2011 17:57:50 +0000</pubDate>
			<dc:creator>cipilusca</dc:creator>
			<guid isPermaLink="false">956@http://www.dudasprogramacion.com/</guid>
			<description><p>Tengo el siguiente formulario de productos con los precios, subtotales y total final y quiero enviar la informacion para que me llegue a mi mail par ver lo que ha pedido el cliente. Podrian ayudarme a insertar el boton de envio que recopile toda la informacion sobre el producto elegido, la cantidad y el precio final. Este es el codigo donde he insertado un boton Enviar pero no me llega nada en el mail, me llega vacio.</p>
<pre class="html4strict" style="font-family:monospace;">&nbsp;
<span style="color: #ddbb00;">&amp;#60;</span>form action=&quot;mailto:pedidos@frescoysabroso.es&quot; method=&quot;get&quot; enctype=&quot;text/plain&quot;<span style="color: #ddbb00;">&amp;#62;</span>
&nbsp;
<span style="color: #ddbb00;">&amp;#60;</span>table width=&quot;620&quot; height=&quot;319&quot;<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td width=&quot;168&quot;<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td width=&quot;92&quot;<span style="color: #ddbb00;">&amp;#62;</span>Cantidad<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td width=&quot;106&quot;<span style="color: #ddbb00;">&amp;#62;</span>Precio<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td width=&quot;327&quot;<span style="color: #ddbb00;">&amp;#62;</span>Total<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Platanos<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;platanos&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,precioplatanos.value,totalplatanos,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;precioplatanos&quot; value=&quot;1.6&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
1,6<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalplatanos&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
€ <span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Manzanas<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;manzanas&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciomanzanas.value,totalmanzanas,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciomanzanas&quot; value=&quot;3&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
3 <span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalmanzanas&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
€ <span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Peras<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;peras&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,precioperas.value,totalperas,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;precioperas&quot; value=&quot;2&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
2<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalperas&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
€ <span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Uvas<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;uvas&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciouvas.value,totaluvas,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciouvas&quot; value=&quot;9&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
9<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totaluvas&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
€ <span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Melón<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;melon&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciomelon.value,totalmelon,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
pieza<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciomelon&quot; value=&quot;4&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
  4  <span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalmelon&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>€<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Melocotones<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;melocotones2&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciomelocotones.value,totalmelocotones,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
  kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciomelocotones2&quot; value=&quot;5&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
    5<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalmelocotones2&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
    €<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Melocotones<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;melocotones3&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciomelocotones.value,totalmelocotones,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
  kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciomelocotones3&quot; value=&quot;5&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
    5<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalmelocotones3&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
    €<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Melocotones<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;melocotones4&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciomelocotones.value,totalmelocotones,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
  kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciomelocotones4&quot; value=&quot;5&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
    5<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalmelocotones4&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
    €<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Melocotones<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;melocotones5&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciomelocotones.value,totalmelocotones,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
  kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciomelocotones5&quot; value=&quot;5&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
    5<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalmelocotones5&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
    €<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Cebolla<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;3&quot; id=&quot;cebolla&quot; value=&quot;0&quot; onChange=&quot;calculo(this.value,preciocebolla.value,totalcebolla,total);&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
  kg.<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;hidden&quot; id=&quot;preciocebolla&quot; value=&quot;0.5&quot;/<span style="color: #ddbb00;">&amp;#62;</span>
    0,50<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>input type=&quot;text&quot; size=&quot;8&quot; id=&quot;totalcebolla&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
    €<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span>Total<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>td<span style="color: #ddbb00;">&amp;#62;</span> <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;text&quot; id=&quot;total&quot; size=&quot;8&quot; value=&quot;0&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
€<span style="color: #ddbb00;">&amp;#60;</span>/td<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/tr<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/table<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>p<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>label<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>input type=&quot;submit&quot; name=&quot;enviar&quot; id=&quot;enviar&quot; value=&quot;Enviar&quot; /<span style="color: #ddbb00;">&amp;#62;</span>
  <span style="color: #ddbb00;">&amp;#60;</span>/label<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/p<span style="color: #ddbb00;">&amp;#62;</span>
<span style="color: #ddbb00;">&amp;#60;</span>/form<span style="color: #ddbb00;">&amp;#62;</span></pre></description>
		</item>
		<item>
			<title>lineadecodigo on "src enmascarado con variable ¿se puede?"</title>
			<link>http://www.dudasprogramacion.com/topic/src-enmascarado-con-variable-%c2%bfse-puede#post-945</link>
			<pubDate>Thu, 26 May 2011 20:17:47 +0000</pubDate>
			<dc:creator>lineadecodigo</dc:creator>
			<guid isPermaLink="false">945@http://www.dudasprogramacion.com/</guid>
			<description><p>@Lobodemonte,</p>
<p>Puedes pegarnos el código que tengas para orientarnos. ¿Una variable jQuery? No será javascript.
</p></description>
		</item>
		<item>
			<title>Lobodemonte on "src enmascarado con variable ¿se puede?"</title>
			<link>http://www.dudasprogramacion.com/topic/src-enmascarado-con-variable-%c2%bfse-puede#post-944</link>
			<pubDate>Thu, 26 May 2011 17:09:53 +0000</pubDate>
			<dc:creator>Lobodemonte</dc:creator>
			<guid isPermaLink="false">944@http://www.dudasprogramacion.com/</guid>
			<description><p>¿Dónde tienes la variable? </p>
<p>Gracias señor por su respuesta.  La variable es de Jquery.  En realidad quisiera como enmascarar el nombre de una imagen, un archivo .swf o una animación.  La idea es que en la página web de respuesta se active una imagen a petición al usuario.  Es por esta razón que debería ir en una variable.</p>
<p>Gracias.
</p></description>
		</item>
		<item>
			<title>lineadecodigo on "src enmascarado con variable ¿se puede?"</title>
			<link>http://www.dudasprogramacion.com/topic/src-enmascarado-con-variable-%c2%bfse-puede#post-941</link>
			<pubDate>Thu, 26 May 2011 00:06:14 +0000</pubDate>
			<dc:creator>lineadecodigo</dc:creator>
			<guid isPermaLink="false">941@http://www.dudasprogramacion.com/</guid>
			<description><p>@Lobodemonte,</p>
<p>Si la variable la tienes en javascript. Puedes generar el código dinámicamente:</p>
<pre class="javascript" style="font-family:monospace;">&nbsp;
<span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;javascript&quot;</span><span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span>
  <span style="color: #003366; font-weight: bold;">var</span> url <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;img/photos/1.jpg&quot;</span><span style="color: #339933;">;</span>
  document.<span style="color: #000066; font-weight: bold;">write</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;&amp;#60;img src='&quot;</span> <span style="color: #339933;">+</span> url <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;' width=620&amp;#62;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">60</span><span style="color: #339933;">;/</span>script<span style="color: #339933;">&amp;</span>#<span style="color: #CC0000;">62</span><span style="color: #339933;">;</span></pre>
<p>¿Dónde tienes la variable?
</p></description>
		</item>
		<item>
			<title>Lobodemonte on "src enmascarado con variable ¿se puede?"</title>
			<link>http://www.dudasprogramacion.com/topic/src-enmascarado-con-variable-%c2%bfse-puede#post-940</link>
			<pubDate>Wed, 25 May 2011 23:45:05 +0000</pubDate>
			<dc:creator>Lobodemonte</dc:creator>
			<guid isPermaLink="false">940@http://www.dudasprogramacion.com/</guid>
			<description><p>Señores expertos:</p>
<p>Agradezco su cooperación en la siguiente pregunta:<br />
¿Puedo aplicar una variable llamada "foto1" que contenga una dirección como: img/photos/1.jpg a una línea como: </p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #ddbb00;">&amp;#60;</span>img src=&quot;img/photos/1.jpg&quot; width=620<span style="color: #ddbb00;">&amp;#62;</span></pre>
<p>Gracias de antemano.
</p></description>
		</item>
		<item>
			<title>josep on "SUBIR VIDEOS A MI WEB(HTML)"</title>
			<link>http://www.dudasprogramacion.com/topic/subir-videos-a-mi-webhtml#post-890</link>
			<pubDate>Fri, 04 Mar 2011 11:13:41 +0000</pubDate>
			<dc:creator>josep</dc:creator>
			<guid isPermaLink="false">890@http://www.dudasprogramacion.com/</guid>
			<description><p>Has solucionado el problema del video?
</p></description>
		</item>
		<item>
			<title>Torres on "SUBIR VIDEOS A MI WEB(HTML)"</title>
			<link>http://www.dudasprogramacion.com/topic/subir-videos-a-mi-webhtml#post-822</link>
			<pubDate>Tue, 07 Dec 2010 07:38:47 +0000</pubDate>
			<dc:creator>Torres</dc:creator>
			<guid isPermaLink="false">822@http://www.dudasprogramacion.com/</guid>
			<description><p>Buenas</p>
<p>¿Con que navegador lo estás probando?
</p></description>
		</item>
		<item>
			<title>yuli96 on "SUBIR VIDEOS A MI WEB(HTML)"</title>
			<link>http://www.dudasprogramacion.com/topic/subir-videos-a-mi-webhtml#post-821</link>
			<pubDate>Mon, 06 Dec 2010 20:14:27 +0000</pubDate>
			<dc:creator>yuli96</dc:creator>
			<guid isPermaLink="false">821@http://www.dudasprogramacion.com/</guid>
			<description><p>Hola! bueno yo nunca antes he hecho una pagina web,hasta ahora q nos toca como examen de informatica,la estamos haciendo en html de bloc de notas, quiero subir un video,voy a youtube,pego el codigo embed en el html,y cuando entro a la pagina no me sale, m sale un cuadro transparente y ariba en la esquina superior derecha un cuadrito blanco, intente pegar el "embed" de otra pagina, pero me sale un cuadro negro que no repreoduce elvideo, y ariba en la esquina superior derecha m sale el mismo cuadrito blanco.Los codigos q pege fueron:</p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #ddbb00;">&amp;#60;</span>iframe frameborder=&quot;0&quot; width=&quot;560&quot; height=&quot;314&quot; src=&quot;http://www.dailymotion.com/embed/video/xdilcu?width=560<span style="color: #ddbb00;">&amp;#38;</span>theme=none<span style="color: #ddbb00;">&amp;#38;</span>foreground=%23F7FFFD<span style="color: #ddbb00;">&amp;#38;</span>highlight=%23FFC300<span style="color: #ddbb00;">&amp;#38;</span>background=%23171D1B<span style="color: #ddbb00;">&amp;#38;</span>start=<span style="color: #ddbb00;">&amp;#38;</span>animatedTitle=<span style="color: #ddbb00;">&amp;#38;</span>iframe=1<span style="color: #ddbb00;">&amp;#38;</span>additionalInfos=0<span style="color: #ddbb00;">&amp;#38;</span>autoPlay=0<span style="color: #ddbb00;">&amp;#38;</span>hideInfos=0&quot;<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>/iframe<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>b<span style="color: #ddbb00;">&amp;#62;</span><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.dailymotion.com/video/xdilcu_justin-bieber-feat-jaden-smith-neve_music&quot;</span>&gt;</span>Justin Bieber (Feat. Jaden Smith)  Never Say Never<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span><span style="color: #ddbb00;">&amp;#60;</span>/b<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>i<span style="color: #ddbb00;">&amp;#62;</span>Cargado por <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.dailymotion.com/FDJC69&quot;</span>&gt;</span>FDJC69<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span>. - <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.dailymotion.com/mx/channel/music&quot;</span>&gt;</span>Videos de música, entrevistas a los artistas, conciertos y más.<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span><span style="color: #ddbb00;">&amp;#60;</span>/i<span style="color: #ddbb00;">&amp;#62;</span>
&nbsp;
<span style="color: #ddbb00;">&amp;#60;</span>iframe frameborder=&quot;0&quot; width=&quot;320&quot; height=&quot;179&quot; src=&quot;http://www.dailymotion.com/embed/video/xdilcu?width=320<span style="color: #ddbb00;">&amp;#38;</span>theme=none<span style="color: #ddbb00;">&amp;#38;</span>foreground=%23F7FFFD<span style="color: #ddbb00;">&amp;#38;</span>highlight=%23FFC300<span style="color: #ddbb00;">&amp;#38;</span>background=%23171D1B<span style="color: #ddbb00;">&amp;#38;</span>start=<span style="color: #ddbb00;">&amp;#38;</span>animatedTitle=<span style="color: #ddbb00;">&amp;#38;</span>iframe=1<span style="color: #ddbb00;">&amp;#38;</span>additionalInfos=0<span style="color: #ddbb00;">&amp;#38;</span>autoPlay=0<span style="color: #ddbb00;">&amp;#38;</span>hideInfos=0&quot;<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>/iframe<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>b<span style="color: #ddbb00;">&amp;#62;</span><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.dailymotion.com/video/xdilcu_justin-bieber-feat-jaden-smith-neve_music&quot;</span>&gt;</span>Justin Bieber (Feat. Jaden Smith)  Never Say Never<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span><span style="color: #ddbb00;">&amp;#60;</span>/b<span style="color: #ddbb00;">&amp;#62;&amp;#60;</span>i<span style="color: #ddbb00;">&amp;#62;</span>Cargado por <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.dailymotion.com/FDJC69&quot;</span>&gt;</span>FDJC69<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span>. - <span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.dailymotion.com/mx/channel/music&quot;</span>&gt;</span>Videos de música, entrevistas a los artistas, conciertos y más.<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span><span style="color: #ddbb00;">&amp;#60;</span>/i<span style="color: #ddbb00;">&amp;#62;</span></pre>
<p>Luego intente subir el video directamente,como un archivo wmv, puse este codigo:</p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;\Nueva carpeta\neversyanever.wmv&quot;</span>&gt;</span>NEVER SAY NEVER (69kb fichero WMV)<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><a href="http://december.com/html/4/element/a.html"><span style="color: #000000; font-weight: bold;">a</span></a>&gt;</span></pre>
<p>Y no funciona, ya nose q hacer! ayuda porfavor!y noc como pasarles la direccion de la web, porque aun la tengo en html, o nose muy bien como explicarlo pero la direccion viene siendo:F:\Nueva carpeta\mipagina.html<br />
Si puedn tambien diganme como ponerlo q sea una verdadera direccion web, GRACIAS
</p></description>
		</item>
		<item>
			<title>lineadecodigo on "Como colocar un hipervínculo en una pagina html"</title>
			<link>http://www.dudasprogramacion.com/topic/como-colocar-un-hipervinculo-en-una-pagina-html#post-805</link>
			<pubDate>Fri, 26 Nov 2010 09:19:37 +0000</pubDate>
			<dc:creator>lineadecodigo</dc:creator>
			<guid isPermaLink="false">805@http://www.dudasprogramacion.com/</guid>
			<description><p>@evelin,</p>
<p>Cuando revises el como ir colocando las capas, verás que hay un atributo que se llama float. Que será el que más te ayude.</p>
<p>Así, al final de tu página puedes tener una capa (DIV o SPAN) con la propiedad float al valor left. Algo así:</p>
<pre class="html4strict" style="font-family:monospace;"><span style="color: #ddbb00;">&amp;#60;</span>div class='float:left'<span style="color: #ddbb00;">&amp;#62;</span>Texto a la izquierda<span style="color: #ddbb00;">&amp;#60;</span>/div<span style="color: #ddbb00;">&amp;#62;</span></pre></description>
		</item>
		<item>
			<title>evelin on "Como colocar un hipervínculo en una pagina html"</title>
			<link>http://www.dudasprogramacion.com/topic/como-colocar-un-hipervinculo-en-una-pagina-html#post-804</link>
			<pubDate>Fri, 26 Nov 2010 08:48:25 +0000</pubDate>
			<dc:creator>evelin</dc:creator>
			<guid isPermaLink="false">804@http://www.dudasprogramacion.com/</guid>
			<description><p>Gracias por el manual.
</p></description>
		</item>
		<item>
			<title>Torres on "Como colocar un hipervínculo en una pagina html"</title>
			<link>http://www.dudasprogramacion.com/topic/como-colocar-un-hipervinculo-en-una-pagina-html#post-780</link>
			<pubDate>Tue, 23 Nov 2010 08:32:49 +0000</pubDate>
			<dc:creator>Torres</dc:creator>
			<guid isPermaLink="false">780@http://www.dudasprogramacion.com/</guid>
			<description><p>Buenas,</p>
<p>Creo que necesitas un buen tutorial de HTML y CSS:</p>
<p><a href="http://www.w3schools.com/html/default.asp" rel="nofollow">http://www.w3schools.com/html/default.asp</a></p>
<p><a href="http://www.w3schools.com/css/default.asp" rel="nofollow">http://www.w3schools.com/css/default.asp</a></p>
<p>Un saludo
</p></description>
		</item>
		<item>
			<title>evelin on "Como cargar una ventana nueva en un fichero html"</title>
			<link>http://www.dudasprogramacion.com/topic/como-cargar-una-ventana-nueva-en-un-fichero-html#post-778</link>
			<pubDate>Mon, 22 Nov 2010 21:10:30 +0000</pubDate>
			<dc:creator>evelin</dc:creator>
			<guid isPermaLink="false">778@http://www.dudasprogramacion.com/</guid>
			<description><p>El fichero tiene texto, pero al abrirse la página debe aparecer en la parte superior una nueva ventana pequeña que contiene un pequeño texto.<br />
A esta página se accede desde un hipervínculo de la página principal.<br />
No se si la función que crea a la ventana debo llamarla en la estructura del body, colocandole &#60;Body onload = "nombrefuncion()"&#62;, pero así no me funciona, como debo hacerlo?, la función ya la tengo hecha.<br />
No se si influye que ese fichero tiene que aparecer dentro de un frame de la página principal que es donde está el hipervínculo que lo llama.<br />
Por favor ayudadme.
</p></description>
		</item>
		<item>
			<title>evelin on "Como colocar un hipervínculo en una pagina html"</title>
			<link>http://www.dudasprogramacion.com/topic/como-colocar-un-hipervinculo-en-una-pagina-html#post-777</link>
			<pubDate>Mon, 22 Nov 2010 20:40:37 +0000</pubDate>
			<dc:creator>evelin</dc:creator>
			<guid isPermaLink="false">777@http://www.dudasprogramacion.com/</guid>
			<description><p>Quiero colocar un hipervínculo al final de una página, en el lado izquierdo.<br />
Como hago para que aparezca allí?
</p></description>
		</item>

	</channel>
</rss>

