citrix, ethernet, exploits, freebsd, html, kernel, linux, redes-sociales, seguridad, vmsplice, vulnerabilidades, web20
Filtro activo: »html« (Haga click en el filtro activo para quitarlo o seleccione otra palabra de la lista de arriba.)
A hyperlink is a reference in a document (a HTML webpage) to one of two places:
The first one is used, for example to make an index of the sections of a document. If your document has three sections and you put three hyperlinks at the top of the document, clicking any of the hyperlinks you "jump" directly to that section of the document without the need to browse all the document.
How is it done?
We have to use piece of HTML whose name is "the anchor tag", or simply "a".
This is the HTML code you need to, using the "a" tag, create an index to a document:
Index of the document <a href="#section1">first section of the document</a> <a href="#section2">second section of the document</a> <a href="#section3">third section of the document</a> <p> <a name="section1"></a> This text is in the first section, it can be as long as needed. <p> <a name="section2"></a> This text is in the first section, it can be as long as needed. <p> <a name="section3"></a> This text is in the first section, it can be as long as needed.
Observe the use of the symbol #. It is used to identify the section inside of a page.
The way of using this symbol for jumping to pages or sections of pages is:
webpage-address#webpage-section
You see in the above example that there's nothing on the left part of the # in "#section1", so it means "section 1 of this page".
If you write the URL of a webpage before the # symbol you do a different thing, you will "jump" to another page, leaving the page you are reading. This is what we would do next.
The second use of a hyperlink is to "jump" to another web page. It is the most common use of the "anchor" tag. We will do it by clicking over a text of the page.
How is it done?
This is, for example, the HTML tag that I have to put in my website to allow my readers to jump to your website:
Observe that in this case there's nothing in the right part of the # symbol, so, we will "jump" to another page.
Here is the link so that you can test if it works: click here to visit Sudarshan's website
To sum up, here you have all the combinations possible inside the "href" part of the "a" (anchor) tag. To simplify we will use a fictitious web page named www.myweb.com:
http://www.page.com
It means "go to the top of the www.myweb.com page". In this case you can do it without the # symbol.
http://www.page.com#section34
It means "go to the mark "section34" inside the www.myweb.com page". Remember, on the left of the # symbol, the address, on the right part, the section.
#last_part
It means "go to the section named 'last_part' of this same page". In this case you would not "jump" to another page, you just will move to another part of the same page.
¿Te ha gustado? - Digg Me! | Add to del.icio.us! | reddit this!
permalink | categoría: /nepal | Etiquetas: html, nepal
Tal como ocurre con el API para generar mapas dinámicos, hace falta la clave gratuita para usar los mapas desde nuestro dominio, que se puede solicitar aquí.
El formato de la URL que tenemos que confeccionar para generar el mapa es:
http://maps.google.com/staticmap?parametros
Los parámetros van concatenados entre si mediante el símbolo &. Una vez que tengamos claro qué parámetros usaremos para generar el mapa, confeccionamos la URL y se la ponemos de argumento al atributo SRC de la etiqueta IMG.
Por ejemplo, este mapa tipo "roadmap" (el tipo de mapa habitual de Google Maps) muestra la zona de la puerta del sol de Madrid y un marcador.
maptype=roadmap
center=40.416741,-3.70325
markers=40.416741,-3.70325,red
zoom=16
size=320x240
key=[aquí va la clave para Google Maps de nuestro dominio]
Este otro mapa de la misma zona muestra dos marcadores y es tipo "mobile", que está pensado para ser visualizado por dispositivos móviles por su mayor contraste y mayor tamaño de letra.
maptype=mobile
center=40.416741,-3.70325
markers=40.416,-3.703,reda|40.417,-3.704,blueb
zoom=16
size=320x240
key=[aquí va la clave para Google Maps de nuestro dominio]
Los marcadores que podemos usar son los estándares de Google, lo cual limita un poco lo que podemos hacer con este sistema sobre lo que podemos hacer con Javascript. Al menmos podemos elegir el color, con lo cual podemos visualizar el estado del punto marcado mediante un código de colores, y mediante una leyenda en el lateral del mapa podemos indicar el significado de cada marcador.
permalink | categoría: /web20 | Etiquetas: google-maps, html, web20
Es cierto que este nuevo escenario en el que nos empezamos a mover con la Web 2.0 va a obligarnos a cambiar cosas, a tipificar nuevos delitos, a aprender nuevas formas de relacionarnos, pero si alguien solo piensa en cómo controlar y no en cómo aportar es que ya no pertenece a este mundo. Vivir en el siglo XXI implica aprender a usar la tecnología para relacionarnos, y este hecho afectará tanto los planes de estudio como los artículos del código penal.
No hay vuelta atrás. Ahora que la Web 2.0 nos ha dado a cada uno un altavoz de alcance universal hay que dejar de ser espectador y empezar a aportar, a crear contenido personal o colectivamente. Por primera vez en la historia es posible crear una red social entre personas de distintos paises pero que tienen los mismos intereses. Esto hace necesario que ampliemos el significado de algunos conceptos que creíamos absolutos y perfectamente definidos: la propiedad intelectual, la identidad, la ética, la estética, la privacidad, el comercio, la amistad y hasta el concepto de amor.
En menos de 5 minutos este interesante vídeo hace un recorrido histórico a la tecnología que produjo la web y explica los cambios sociales que se están produciendo ahora que nos hemos dado cuenta de que interconectando ordenadores lo que hacemos en realidad es poner en contacto a personas.
Más información: http://mediatedcultures.net
¿Te ha gustado? - Digg Me! | Add to del.icio.us! | reddit this!
permalink | categoría: /web20 | Etiquetas: html, redes-sociales, web20, xml