Harrods’s Weblog

Entradas de Noviembre 2007

HTML LANGUAGE

Noviembre 24, 2007 · No hay comentarios

HTML, an initialism of Hypertext Markup Language, is the predominant markup language for web pages. It provides a means to describe the structure of text-based information in a document — by denoting certain text as headings, paragraphs, lists, and so on — and to supplement that text with interactive forms, embedded images, and other objects. HTML is written in the form of labels (known as tags), surrounded by angle brackets. HTML can also describe, to some degree, the appearance and semantics of a document, and can include embedded scripting language code which can affect the behavior of web browsers and other HTML processors.

HTML is also often used to refer to content of the MIME type text/html or even more broadly as a generic term for HTML whether in its XML-descended form (such as XHTML 1.0 and later) or its form descended directly from SGML (such as HTML 4.01 and earlier).

Elements are the basic structure for HTML markup. Elements have two basic properties: attributes and content. Each attribute and each element’s content has certain restrictions that must be followed for an HTML document to be considered valid. An element usually has a start label (e.g. <label>) and an end label (e.g. </label>). The element’s attributes are contained in the start label and content is located between the labels (e.g. <label attribute="value">Content</label>). Some elements, such as <br>, do not have any content and so need no closing label.

Structural markup describes the purpose of text,for example, <h2>Golf</h2> establishes “Golf” as a second-level heading. Structural markup does not denote any specific rendering, but most web browsers have standardized on how elements should be formatted. Further styling should be done with Cascading Style Sheets (CSS).

Presentational markup describes the appearance of the text, regardless of its function.For example <b>boldface</b> indicates that visual output devices should render “boldface” in bold text, but gives no indication what devices which are unable to do this should do.

Hypertext markup links parts of the document to other documents. HTML up through version XHTML 1.1 requires the use of an anchor element to create a hyperlink in the flow of text: <a>Wikipedia</a>. However, the href attribute must also be set to a valid URL so for example the HTML code, <a href="http://en.wikipedia.org/">Wikipedia</a>, will render the word “Wikipedia” as a hyperlink.

There are some basic HTML basic codes such as:

  • <html>: Defines the beginning of HTML’s document which indicates to the browser that, which comes next is the HTML code.
  • <head>: Defines the top of HTML’s code which contains information that is not seen to the browser.

<title>: Defines the title of the page.

<link>: To link the place to icones e.g.<link rel=”stylesheet” href=”/style.css” type=”text/css”>

<style>: To put the internal style of the page using CSS, JavaScript or other similar languages.

<body>: Defines the principal content. It is the part shown by tha browser here we can find:

  • <h1>, <h2>, <h3>, <h4>, <h5>, <h6>: titles depending to the importance.
  • <a>: A link in or out of the web site. It must be defined by the atrute href.
  • <div>: Page area
  • <img>: Images, requires src atribute.
  • <font color=”#rrggbb”>: Color of the text, represented by the code hexadecimal.
  • <b>: Text in bold.
  • <i>: Text in italics.
  • <u>: Text underlined.

The majority should be closed like they are opened “/”, e.g:

  • <table><tr><td> Content of a cell</td></tr></table>
  • <script> Code of an script put it on the page </script>

Libro-e(2007,23)de novienmvbre.Wikipedia, La enciclopedia libre. Fecha de consulta, Noviembre,24,2007, 10:45 from

http://en.wikipedia.org/wiki/HTML

http://es.wikipedia.org/wiki/HTML

Categorías: General
Etiquetado: ,

web 2.0

Noviembre 23, 2007 · No hay comentarios

Web 2.0 refers to a perceived second generation of web-based communities and hosted services — such as social-networking sites, wikis, and folksonomies— which aim to facilitate creativity, collaboration and sharing between users. The term gained currency following the first O’Reilly Media Web 2.0 conference in 2004.[2][3] Although the term suggests a new version of the World Wide Web, it does not refer to an update to any technical specifications, but to changes in the ways software developers and end-users use webs. According to Tim O’Reilly,

“Web 2.0 is the business revolution in the computer industry caused by the move to the Internet as platform, and an attempt to understand the rules for success on that new platform.”

Some technology experts, notably Tim Berners-Lee, have questioned whether one can use the term in a meaningful way, since many of the technology components of “Web 2.0″ have existed since the early days of the Web.[5][6]

Anyway, the best way to understand what the Web 2.0 is, is by this examples:

  • Web 1.0 > Web 2.0
  • Doubleclick –> Google AdSense (Servicios Publicidad)
  • Ofoto –> Flickr (Comunidades fotográficas)
  • Akamai –> BitTorrent (Distribución de contenidos)
  • mp3.com –> Napster (Descargas de música)
  • Britannica Online –> Wikipedia (Enciclopedias)
  • Sitios personales –> Blogs (Páginas personales)
  • Especulación con dominios –> Optimización en motores de búsqueda
  • Page views –> Cost per click
  • CMSs –> Wikis (Manejo de contenidos)
  • Categorías/Directorios –> Tagging

There are also somo technologies which make this go on together with the web. This technologies are:

  • Transformar software de escritorio hacia la plataforma del web.
  • Respeto a los estándares del XHTML.
  • Separación de contenido del diseño con uso de hojas de estilo.
  • Sindicación de contenidos.
  • Ajax (Asincronical javascript and xml).
  • Uso de Flash, Flex o Lazlo.
  • Uso de Ruby on Rails para programar páginas dinámicas.
  • Utilización de redes sociales al manejar usuarios y comunidades.
  • Dar control total a los usuarios en el manejo de su información.
  • Proveer APis o XML para que las aplicaciones puedan ser manipuladas por otros.
  • Facilitar el posicionamiento con URL sencillos.

    Furthermore, there are some comparations between the Web 1.0 and the Web 2.0:

    Web 1.0 Web 2.0
    DoubleClick Google AdSense
    Ofoto Flickr
    Akamai BitTorrent
    mp3.com Napster
    Enciclopedia Británica Wikipedia
    webs personales blogging
    evite upcoming.org y EVDB
    especulación de nombres de dominios optimización de los motores de búsqueda
    páginas vistas coste por clic
    screen scraping servicios web
    publicar participación
    sistema de gestión de contenidos wiki
    directorios (taxonomía) etiquetas (folcsonomía)
    stickiness sindicación
    • Libro-e (2007, 22) de noviembre. Wikipedia, La enciclopedia libre. Fecha de consulta: Noviembre, 23, 2007 1:14 from

    http://es.wikipedia.org/wiki/Web_2.0

    Cristian Van Der Henst S. (2005, 27) de octubre. Maestros del web. Fecha de consulta: Noviembre, 23, 2007 1:26 from

    http://www.maestrosdelweb.com/editorial/web2/

    Categorías: General
    Etiquetado: ,

    Los e-Books

    Noviembre 14, 2007 · No hay comentarios

    Un e-Book, libro electrónico(o digital) y también llamado ecolibro, puede ser una obra individual o en formato digital, es decir, un dispositivo utilizado para leer libros en formato digital. Los e-Books permiten una lectura en pantalla de cualquier obra preparada para este formato digital, en los últimos años se han desarrollado nuevos prototipos y se han realizado avances para mejorar las características de los libros digitales.
    Los libros digitales tienen el aspecto de una pantalla, una pantalla que imita la forma de un libro (aunque tambien pueden ser leidos en un ordenador si se dispone de un Software específico). Este tipo de formato tiene ventajas como el acceso universal, es decir, todo el mundo que disponga de este Software puede acceder a todo tipo de libros; Su disponibilidad es inmediata, comprar, descargar, leer… sin mayor complicación, su precio es más bajo, nos aporta nuevas utilidades como su interactividad, edición de formáto básico… es fácil de usar, no exige conocimientos prévios de informática, es práctico y transportable… esas son las ventajas más destacadas respecto al libro tradicional, aunque también tiene ciertas desventajas como bien puede ser las consecuencias para la salud de nuestra vista.
    Estos libros electrónicos son una nueva forma de lectura, que responde a un afán de extender el ámbito de lectura a un sector mayor y también de adaptación a nuevos tiempos, esto supone una revolución técnica en la reproducción y lectura de textos.
    La información de la que disponemos a cerca de los libros digitales, es bastante complicada en relacción a los conocimientos informáticos que tenemos, ya que son muy básicos, pero si hemos podido averiguar, que hay varias formas de convertir un libro normal y corriente en un libro electrónico, las principales vías a traves de las que podemos lograr un libro digital son:

    • Escanear documentos y convertirlos en JPEG o PDF
    • Informatizar, o convertirlo en base de datos
    • Transcribir a texto ASCII
    • Publicar en internet utilizando los denominados códigos HTML para etiquetar, anotar y añadir metadatos (XML)

    Se guardan en diversos programas que permiten su lectura, entre los formatos más utilizados para leer estos libros destacan programas como Adobe Acrobat Reader, Microsoft Reader, PDA (Asistente Digital Personal o dispositivo Palm)…
    Los libros electronicos están disponibles en numerosas páginas de internet, ya sean de bibliotecas o editoriales virtuales, webs propias de autores, tiendas; correos electrónicos promocionales… y el método de pago es muy comodo, se pueden pagar con tarjeta a traves de lo que se denomina PayPal.
    Fuentes:

    Categorías: General
    Etiquetado: ,