jueves, 29 de diciembre de 2011

El texto 'dance'



Al igual que con el CSS, el Javascript tambien nos da muchas posibilidades en cuanto al diseño de texto se refiere. En este caso lo animamos como si las letras estuvieran bailando, a la vez que cambian de color y aumentan y disminuyen de tamaño. Para añadirlo a tu blog o web, solo tienes que copiar el codigo de abajo. Escribes el texto donde esta indicado en rojo, pero recuerda que tienes que escribirlo del reves para que se lea bien.




Codigo:

<script language="JavaScript">
var theText = "OTXET";
function nextSize(i,textLength) {
return (72*Math.abs( Math.sin(i/(textLength/3.14))));
}
function sizeCycle(text,dis) {
zob = ""
for(i = text.length; i > (-1) ; i--) {
size = parseInt(nextSize(i +dis,text.length));
zob += "<u><font color='"+size*size*size+"' style='font-size: "+ size +"pt'>" +text.substring(i,i+1)+ "</font></u>";
}
document.getElementById("textodance").innerHTML = zob;
}
function doWave(n) {
sizeCycle(theText,n)
if (n > theText.length) {n=0}
setTimeout("doWave(" + (n+1) + ")", 50);
}
</script><BODY onload="doWave(0)"><div id="textodance" align="center"></div>




lunes, 26 de diciembre de 2011

Barra de busqueda tuneada

Una barra de busqueda siempre es imprescindible para un blog. Lo que pasa es que la mayoria de estas vienen con un diseño bastante simple. Por eso he diseñado esta tan maja que la podemos aplicar a Blogger o a cualquier otra plataforma de blogs. La barra funciona con JQuery y en el CSS le he añadido colores gradientes en tonos azulados, ademas de bordes redondeados y sombras para darle un toque mas 'cool'.




Para añadirla a nuestro blog, lo primero es añadir los estilos en nuestra plantilla.


<style>
#searchContainer {
margin:20px;
}

/* Estilo de la barra de busqueda */
#field {
float:left;
width:150px;
height:32px;
line-height:27px;
text-indent:10px;
font-family:arial, sans-serif;
font-size:1em;
color:#000000;
border-radius:20px;
background: #fff;
border:solid 1px #6E7C86;
-webkit-box-shadow: 0px 0px 0px #000000;-moz-box-shadow: 0px 0px 0px rgba(0,0,0,.8);box-shadow: 1px 1px 1px #000000 inset, 1px 7px 7px rgba(0, 0, 0, 0.6);background-image: -moz-linear-gradient(center top , #B4CAD3, #ffffff) !important;}
/* Estilo del boton Buscar */
#submit {
background-image: -moz-linear-gradient(center top , #B6D3F4, #000000) !important;
    border: 1px solid #9AC9FF !important;
    border-radius: 18px 18px 18px 18px;
    box-shadow: 0 1px 1px white inset, 0 3px 3px rgba(0, 0, 0, 0.6);
    color: #F3F782 !important;
    display: inline-block;
    font: 600 14px/1.4 "myriad-pro-1","myriad-pro-2","Lucida Grande",Sans-Serif;
    padding: 7px 7px;
    position: relative;margin-left:10px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);}
}
/* Estilo del boton Buscar en hover */
#submit:hover {
box-shadow: 0 2px 6px white inset, 0 3px 3px rgba(0, 0, 0, 0.6);
}
#submit:active {

 box-shadow: 0 2px 6px white inset, 0 1px 1px rgba(0, 0, 0, 0.6);
    top: 2px;
}
</style>



Luego, en nuestra plantilla, antes de </head> ponemos el codigo JQuery Javascript.

<script src="http://code.jquery.com/jquery-1.6.1.min.js" type="text/javascript">
<script type='text/javascript'>
$().ready(function() {
// if text input field value is not empty show the &quot;X&quot; button
$(&quot;#field&quot;).keyup(function() {
$(&quot;#x&quot;).fadeIn();
if ($.trim($(&quot;#field&quot;).val()) == &quot;&quot;) {
$(&quot;#x&quot;).fadeOut();
}
});
// on click of &quot;X&quot;, delete input field value and hide &quot;X&quot;
$(&quot;#x&quot;).click(function() {
$(&quot;#field&quot;).val(&quot;&quot;);
$(this).hide();
});
});
</script>




Y por ultimo, alli donde queramos mostrarla, añadimos el codigo HTML.

<div id="searchContainer">
<form action="/search" method="get" name="SUYB">
<input id="field" name="q" type="text" /><input id="submit" name="submit" type="submit" value="BUSCAR" /></form>
</div>





jueves, 22 de diciembre de 2011

Generador de colores hexadecimal

Para que puedas realizar tus diseños web y darles los tonos que mejor combinen, aqui tienes este generador flash. Mueve el cursor por el panel hasta conseguir el color deseado y obtentras el codigo hexadecimal.




PONLO EN TU WEB



domingo, 18 de diciembre de 2011

Texto en movimiento estilo "Pop"

Esto que estas viendo aqui debajo no es una imagen gif, no, esta hecho completamente con CSS3. No precisa de librerias Jquery ni de ninguna clase de Javascript. Una de las muchas posibilidades que nos da el elemento 'animation' para realizar animaciones, bien sean de texto o de imagenes. En este caso me he decantado por el texto, con forma de burbujas que aparecen de una en una aumentando y disminuyendo de tamaño.


HOLA COMO VA?










Si quieres ponerlo en tu web, aqui te dejo el codigo que he utilizado para su realizacion. Donde esta indicado en rojo, escribes las tres palabras que quieras.


<!-- Texto Pop - por REDEANDO-->
<div id="contenedorpop"><div class="textopop">
<span>TEXTO</span>&nbsp;<span>
TEXTO</span>&nbsp;<span>TEXTO</span>
</div></div>
<!-- Estilos CSS3-->
<style>
.textopop {
    text-align: center;
}
.textopop span {
    font-family:Impact;
    font-weight: ;
    line-height:2em;
    color:#FFE13B;
    font-size:60px;
    display: inline-block;
    vertical-align: middle;
    width: 200px;
    height: 200px;
    margin: 20px auto;
    background: #5869E4;
    border-radius: 100px;
    -webkit-animation: loader 0.9s infinite alternate;
    -moz-animation: loader 0.9s infinite alternate;
}
.textopop span:nth-of-type(2) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
}
.textopop span:nth-of-type(3) {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
}
@-webkit-keyframes loader {
  0% {
    width: 200px;
    height: 200px;
    opacity: 0.9;
    -webkit-transform: translateY(0);
  }
  100% {
    width: 24px;
    height: 24px;
    opacity: 0.1;
    -webkit-transform: translateY(-21px);
  }
}
@-moz-keyframes loader {
  0% {
    width: 200px;
    height: 200px;
    opacity: 0.9;
    -moz-transform: translateY(0);
  }
  100% {
    width: 24px;
    height: 24px;
    opacity: 0.1;
    -moz-transform: translateY(-21px);
  }}
#contenedorpop{height: 150px;width: 600px;}
</style>





viernes, 16 de diciembre de 2011

Gifs navideños con gracia



Para amenizar estas fechas tan"pasteleras", ¿que mejor que echarse unas risas? Como esta galeria de gifs animados que no tienen desperdicio.






miércoles, 14 de diciembre de 2011

Estrella animada con Paper.js

Mirad que fantastica animacion creada con Javascript y HTML5, utilizando la libreria Paper.js. Es una estrella de tiras de colores que sigue al cursor de raton. El elemento canvas hace posible la integración de los dibujos y animaciones con el resto de la página y se puede combinar con texto y animaciones interactivas.




¿Os gusta? 
Este es el codigo que he utilizado para su realizacion:


<center><canvas height="500" id="canvas" resize="" width="1024"></canvas></center>
<script src="http://uploads.boxify.me/59554/paper.js" type="text/javascript">
</script>
<script canvas="canvas" type="text/paperscript">
        var amount = 180;
        for (var i = 0; i < amount; i++) {
            var path = new Path();
            path.fillColor = new HsbColor(1, 1, Math.random());
            path.strokeCap = 'round';
            path.closed = true;
        }

        var position = view.center;
        var mousePos = position;
        var children = project.activeLayer.children;
        var count = 0;

        function iterate() {
            count++;
            var delta = (mousePos - position);
            position += delta / 10;
            for (var i = 1; i < amount; i++) {
                var path = children[i];
                var length = Math.abs(Math.sin(i + count / 20) * 300);
                path.segments = [
                    position + delta / 1.5,
                    position + { angle: i * 2, length: length },
                    position + { angle: (i + 1) * 2, length: length }
                ];
                path.fillColor.hue = count - length;
            }
        }

        function onFrame() {
            iterate();
        }

        function onMouseMove(event) {
            iterate();
            mousePos = event.point;
        }
  
</script>





domingo, 11 de diciembre de 2011

Divertido flash para que te sigan en Twitter



Sin duda, este original widget para atraer a los usuarios de tu blog o web a tu cuenta de Twitter seguro que te gustara. Esta realizado en flash animado y con un divertido diseño con el pajaro twittero caraturizado. Ademas de hacer de enlace, saldra el nombre de tu cuenta en el cartel donde se apoya el pajarillo. Solo tienes que copiar el codigo y añadirlo en la parte de tu pagina donde quieras mostrarlo. Tienes que sustituir donde pone "NOMBRE TWITTER" por el nombre de tu cuenta, y puedes modificar el tamaño del widget en los numeros que estan escritos en rojo.



PONLO EN TU BLOG O WEB


<object type="application/x-shockwave-flash" data="http://www.buzzbuttons.com/BUTTON3/twitbutton.swf" width="125" height="125"><param name="movie" value="http://www.buzzbuttons.com/BUTTON3/twitbutton.swf"></param><param name="allowscriptaccess" value="always"></param><param name="menu" value="false"></param><param name="wmode" value="transparent"></param><param name="flashvars" value="username=NOMBRE TWITTER"></param><embed src="http://www.buzzbuttons.com/BUTTON3/twitbutton.swf" type="application/x-shockwave-flash" allowscriptaccess="always" width="125" height="125" menu="false" wmode="transparent" flashvars="username=NOMBRE TWITTER"></embed></object>


jueves, 17 de noviembre de 2011

Imagenes ampliadas con JQuery



Los efectos con JQuery me encantan, y para muestra un boton (una imagen en este caso, jeje). En Blogger hace poco que nos han habilitado la opcion del "lightbox" en las imagenes, esto es algo parecido pero aun me gusta mas. Cuando pasamos el raton por la imagen, el cursor se convierte en una lupa y al hacer click sobre ella se amplia rapidamente con un efecto suave my molon. Al volver a dar click sobre ella, vuelve a su tamaño original.

Aqui teneis un ejemplo con unas cuantas imagenes:

  



Para poner este efecto tan chulo en vuestro blog o web, añadis el siguiente codigo en vuestra plantilla antes de </head>:


<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript">
</script>
<script src="http://hostredeando.ucoz.es/SCRIPTS-BLOG/jquery.magnifier.js" type="text/javascript">
/***********************************************
* Imagen amplada con jQuery
REDEANDO - tu blog webmaster
http://redeando.blogspot.com/
***********************************************/
</script>





Una vez hecho esto, ya solo nos queda añadir el siguiente codigo cada vez que querais poner una imagen con este efecto. Cambiais lo que esta en rojo por la url de la imagen y el tamaño y listo.


<img class="magnify" src="URL DE LA IMAGEN" style="height: 200px; width: 200px;" />






domingo, 13 de noviembre de 2011

Plantilla "Fotoblog_01" para Blogger



Desde el blog  Blogsmadeinspain , nos llega esta nueva plantilla para Blogger diseñada por A. Zambrana. Como su nombre indica, esta orientada a los que quieren realizar un blog dedicado a la fotografia, aunque se puede aplicar a otros generos. El diseño es muy elegante, con 3 columnas de colores arriba y abajo para los gadgets, posts alineados de tres en tres (que al entrar te muestran la entrada a pagina completa) y paginacion incluida. Una muy buena opcion para instalarla en tu blog.



viernes, 11 de noviembre de 2011

Ponte NASA TV en tu web



La compañia aeronautica espacial americana nos brinda dos opciones para ver sus emisiones. Por un lado tenemos su canal en YouTube , en el que podemos insertar sus videos de determinada duracion. Y luego, que es mas interesante, su canal de TV online que emite a traves de USTREAM. En el podremos ver las ultimas noticias, reportajes y videos e imagenes de lo mas impactante. Para amantes de la ciencia y tecnologia espacio-sideral.







Ponlo en tu web o blog:



miércoles, 9 de noviembre de 2011

Imagenes con efecto baraja


Otra maravilla que se puede hacer con los estilos CSS es esta presentacion de imagenes, que al pasar el cursor se expanden como una baraja. Si os gusta y quereis implementarlo en vuestra web, la cosa es muy sencilla.

Lo primero de todo es añadir el codigo CSS, que lo pondremos entre las etiquetas <body> de nuestra plantilla.



<style>
/* the A tag */
.album {
  position: relative;
  z-index: 5;
  width: 250px;
  vertical-align: top;
  display:block;
}

/* the images */
.album img {
  position: absolute;
  top: 0;
  left: 0;
  border: 5px solid #f3f3f3;
  box-shadow: 1px 1px 2px #666;
  -webkit-box-shadow: 1px 1px 2px #666;
  -moz-box-shadow: 1px 1px 2px #666;
  width:250px;
  height:250px;
  display:block;
}
/* first image:  webkit */
@-webkit-keyframes image1 {
  0%   { -webkit-transform: rotate(0deg) translate(0, 0) scale(1.0); }
  100% { -webkit-transform: rotate(-6deg) translate(-100px, -3px) scale(1.1); }
}

/* first image:  firefox */
@-moz-keyframes image1 {
  0%   { -moz-transform: rotate(0deg) translate(0, 0) scale(1.0); }
  100% { -moz-transform: rotate(-6deg) translate(-100px, -3px) scale(1.1); }
}

/* first image:  opera */
@-o-keyframes image1 {
  0%   { -o-transform: rotate(0deg) translate(0, 0) scale(1.0); }
  100% { -o-transform: rotate(-6deg) translate(-100px, -3px) scale(1.1); }
}

/* second image:  webkit */
@-webkit-keyframes image2 {
  0%   { -webkit-transform: rotate(0deg) translate(0, 0) scale(1.0); }
  100% { -webkit-transform: rotate(0deg) translate(0, -3px) scale(1.1); }
}
/* second image:  firefox */
@-moz-keyframes image2 {
  0%   { -moz-transform: rotate(0deg) translate(0, 0) scale(1.0); }
  100% { -moz-transform: rotate(0deg) translate(0, -3px) scale(1.1); }
}
/* second image:  opera */
@-o-keyframes image2 {
  0%   { -o-transform: rotate(0deg) translate(0, 0) scale(1.0); }
  100% { -o-transform: rotate(0deg) translate(0, -3px) scale(1.1); }
}

/* third image:  webkit */
@-webkit-keyframes image3 {
  0%   { -webkit-transform: rotate(0deg) translate(0, 0) scale(1.0); }
  100% { -webkit-transform: rotate(6deg) translate(100px, -3px) scale(1.1); }
}

/* third image:  firefox */
@-moz-keyframes image3 {
  0%   { -moz-transform: rotate(0deg) translate(0, 0) scale(1.0); }
  100% { -moz-transform: rotate(6deg) translate(100px, -3px) scale(1.1); }
}

/* third image:  opera */
@-o-keyframes image3 {
  0%   { -o-transform: rotate(0deg) translate(0, 0) scale(1.0); }
  100% { -o-transform: rotate(6deg) translate(100px, -3px) scale(1.1); }
}
/* first image animation properties */
.album:hover .photo1, .album:focus .photo1 {

  /* webkit animation properties */
  -webkit-animation-name: image1;
  -webkit-animation-duration: .2s;
  -webkit-transform: rotate(-6deg) translate(-100px, -3px) scale(1.1);
 
  /* firefox animation properties */
  -moz-animation-name: image1;
  -moz-animation-duration: .2s;
  -moz-transform: rotate(-6deg) translate(-100px, -3px) scale(1.1);
 
  /* opera animation properties */
  -o-animation-name: image1;
  -o-animation-duration: .2s;
  -o-transform: rotate(-6deg) translate(-100px, -3px) scale(1.1);
 
  /* microsoft animation properties */
  -ms-transform: rotate(-6deg) translate(-100px, -3px) scale(1.1);
}

/* second image animation properties */
.album:hover .photo2, .album:focus .photo2 {

  /* webkit animation properties */
  -webkit-animation-name: image2;
  -webkit-animation-duration: .2s;
  -webkit-transform: rotate(0deg) translate(0, -3px) scale(1.1);
 
  /* firefox animation properties */
  -moz-animation-name: image2;
  -moz-animation-duration: .2s;
  -moz-transform: rotate(0deg) translate(0, -3px) scale(1.1);
 
  /* opera animation properties */
  -o-animation-name: image2;
  -o-animation-duration: .2s;
  -o-transform: rotate(-6deg) translate(-100px, -3px) scale(1.1);
 
  /* microsoft animation properties */
  -ms-transform: rotate(0deg) translate(0, -3px) scale(1.1);
}

/* third image animation properties */
.album:hover .photo3, .album:focus .photo3 {

  /* webkit animation properties */
  -webkit-animation-name: image3;
  -webkit-animation-duration: .2s;
  -webkit-transform: rotate(6deg) translate(100px, -3px) scale(1.1);
 
  /* firefox animation properties */
  -moz-animation-name: image3;
  -moz-animation-duration: .2s;
  -moz-transform: rotate(6deg) translate(100px, -3px) scale(1.1);
 
  /* opera animation properties */
  -o-animation-name: image3;
  -o-animation-duration: .2s;
  -o-transform: rotate(-6deg) translate(-100px, -3px) scale(1.1);
 
  /* microsoft animation properties */
  -ms-transform: rotate(6deg) translate(100px, -3px) scale(1.1);
}
</style>








Una vez hecho esto, ya solo nos queda poner el codigo HTML para mostrar las imagenes cada vez que queramos. Sustituimos donde pone IMAGEN por las urls de las imagenes que queramos añadir.


<center><a class="album" href="ENLACE">
<img class="photo1" src="IMAGEN" />
<img class="photo2" src="IMAGEN" />
<img class="photo3" src="IMAGEN" />
</a></center>





Y aqui teneis el maravilloso resultado que obtendreis. Pasad el raton por encima y vereis el efecto:





















lunes, 7 de noviembre de 2011

Rayos girando con CSS


Vamos a ver un codigo CSS que nos puede servir para hacer un logo, una presentacion o, simplemente un enlace. El codigo lo que hace es poner 2 imagenes, una 'delante' que sera la que nosotros queramos y nos servira de enlace, y otra 'detras' que es la que en este caso girara. Yo he puesto una transparente png de rayos tipo comic, que ya la teneis incluida en el codigo y que es esta:

Y aqui teneis el codigo, en el que podeis modificar el tamaño, ubicacion y url de la imagen que querais poner. Todo lo que tengais que añadir o modificar os lo he puesto en rojo.

<div id="raysDemoHolder">
  <a href="URL ENLACE" id="raysLogo"><font color="#98fb98"><span style="font-size: 12pt;"><u><span style="font-family: Arial Black; font-size: 12pt;">LETRAS AQUI</span></u><br></span></font></a>
  <div id="rays"></div>
</div>
<style>/* keyframes for animation;  simple 0 to 360 */
@-webkit-keyframes spin {
  from { -webkit-transform: rotate(0deg); }
  to { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes spin {
  from { -moz-transform: rotate(0deg); }
  to { -moz-transform: rotate(360deg); }
}

@-ms-keyframes spin {
  from { -ms-transform: rotate(0deg); }
  to { -ms-transform: rotate(360deg); }
}

/* basic structure for the rays setup */
#raysDemoHolder  {
  position: relative;
  width: 490px;
  height: 490px;
  margin: 100px 0 0 200px;
}
#raysLogo {
  width: 250px;
  height: 250px;
  text-indent: -3000px;
  background: url(URL DE TU LOGO O IMAGEN) 0 0 no-repeat;
  display: block;
  position: absolute;
  top: 120px;
  left: 40px;
  z-index: 2;
}
#rays  { /* with animation properties */
  background: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikjherFxi7elkkc2qjRKsFbLgysff5N7sH9hhdMxofz0j6c-CQmeA3VYrqtdIS9n-jRSjerFhKe3gmdt8gMo3vF_NQvG5aCv8Fk-xZoFAuesPJTDigLonNQOF73k-EcXAodD2CFHG43Uj6/s1600/rays-main.png) 0 0 no-repeat;
  position: absolute;
  top: -100px;
  left: -100px;
  width: 490px;
  height: 490px;
 
  /* webkit chrome, safari, mobile */
  -webkit-animation-name: spin;
  -webkit-animation-duration: 40000ms; /* 40 seconds */
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
 
  /* mozilla ff */
  -moz-animation-name: spin;
  -moz-animation-duration: 40000ms; /* 40 seconds */
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
 
  /* microsoft ie */
  -ms-animation-name: spin;
  -ms-animation-duration: 40000ms; /* 40 seconds */
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
}

#rays:hover {
  /* -webkit-animation-duration: 10000ms; 10 seconds - speed it up on hover! */
  /* resets the position though!  sucks */
}</style>




Para que veais un ejemplo de como queda, aqui teneis uno con el logo de mi blog:




domingo, 6 de noviembre de 2011

Comparte el contenido de tu blog con Web.Informer


Web.Informer, Permite añadir un botón o una barra social en tu blog para que tus visitantes puedan añadir el contenido de tus blogs a todos los marcadores sociales como Digg, Yahoo, Delicius, Google, Mixx, Twitter, Segnalo, Tumblr, Facebook, LinkedIn, StumbleUpon, y otras redes sociales del momento. Para conseguir el boton de marcadores o la barra social que se coloca en la parte inferior de tu blog, no debes llenar ningun formulario de registro, solamente escoger el tipo de botón que deseas y luego copiar y pegar el codigo en la plantilla de tu blog. Ademas soporta varios idiomas tales como: Inglés, Español, Ruso, Francés, Alemán, etc.






martes, 1 de noviembre de 2011

Crear una galeria de imagenes tipo Polaroid



¿Os gustaria hacer una presentacion con imagenes diferente en vuestra web? Pues esta galeria hecha solo con CSS os va a encantar. Las imagenes se muestran como desordenadas, con efectos de superposicion al pasar el cursor y con la forma de las fotos Polaroid. Ademas, a cada imagen podemos ponerle un enlace y pueden hacer a la vez de menu. Aqui esta como os quedara una vez añadida, y mas abajo la explicacion de como hacerla.











































Para implementar la galeria en nuestra web, primero ponemos los estilos CSS en el <body> de nuestra plantilla.
<style>
ul.gallery {
    list-style: none outside none;
}
ul.gallery li a {
    background: none repeat scroll 0 0 #EEEEEE;
    border: 1px solid #FFFFFF;
    box-shadow: 0 2px 15px #333333;
    float: left;
    padding: 10px 10px 25px;
    position: relative;
}
ul.gallery li a.pic-1 {
    -moz-transform: rotate(-10deg);
    z-index: 1;
}
ul.gallery li a.pic-2 {
    -moz-transform: rotate(-3deg);
    z-index: 5;
}
ul.gallery li a.pic-3 {
    -moz-transform: rotate(4deg);
    z-index: 3;
}
ul.gallery li a.pic-4 {
    -moz-transform: rotate(14deg);
    z-index: 4;
}
ul.gallery li a.pic-5 {
    -moz-transform: rotate(-12deg);
    z-index: 2;
}
ul.gallery li a.pic-6 {
    -moz-transform: rotate(5deg);
    z-index: 6;
}
ul.gallery li a:hover {
    box-shadow: 3px 5px 15px #333333;
    z-index: 10;
}
</style>




Ahora, solo queda añadir el codigo HTML alli donde queramos mostrar la galeria. Cambiamos lo que esta en rojo para añadir las urls de las imagenes y los enlaces. Para cambiar el tamaño modificais donde pone height="150" y width="250".

<ul class="gallery">
<li><a class="pic-1" href="ENLACE"><img height="150" src="URL IMAGEN" width="250" /></a></li>
<li><a class="pic-2" href="
ENLACE"><img height="150" src="URL IMAGEN" width="250" /></a></li>
<li><a class="pic-3" href="
ENLACE"><img height="150" src="URL IMAGEN" width="250" /></a></li>
<li><a class="pic-4" href="
ENLACE"><img height="150" src="URL IMAGEN" width="250" /></a></li>
<li><a class="pic-5" href="
ENLACE"><img height="150" src="URL IMAGEN" width="250" /></a></li>
<li><a class="pic-6" href="
ENLACE"><img height="150" src="URL IMAGEN" width="250" /></a></li>
</ul>