1. Introducción
    1. Consiste en
      1. Web servers
        1. Recibe requests y envía response
        2. Servidores
          1. Apache
          2. Microsoft IIS
      2. Web clients
        1. Envía requests y muestra response
        2. Browsers
          1. Mozilla Firefox
          2. Google Chrome
          3. Internet Explorer
    2. Ventajas
      1. Actualización inmediata
      2. Multiplataforma
      3. Portable
      4. Alta disponibilidad
    3. Desventajas
      1. Menos funcionalidad que aplicaciones Desktop
      2. Requiere de conexión a Internet
  2. HTML
    1. Hyper Text Markup Language
    2. Le dice al browser como mostrar el contenido
    3. Consiste en un conjunto de tags y atributos
    4. Diferencias con XML?
    5. Tags
      1. <!-- Comentario -->
      2. <html>
        1. <head>
          1. <title>
        2. <body>
          1. <h1>
          2. <h2>
          3. <h3>
          4. <p>
          5. <br>
          6. <a href="">
          7. <img src="">
          8. <form action="url" method="post">
          9. <input>
          10. type="text"
          11. type="password"
          12. type="submit"
    6. Versiones
      1. HTML 4
      2. HTML 5 (draft)
  3. HTTP
    1. Hyper Text Transfer Protocol
    2. Corré sobre TCP/IP
    3. Desarrollado por el consorcio W3C y la IETF
    4. Estructura
      1. Request
        1. HTTP method
          1. GET
          2. No modifica el estado en el servidor
          3. Idempotente
          4. Cuándo?
          5. Ingresar la URL por el browser
          6. Click en un link
          7. Pasa variables por la URL
          8. query string
          9. POST
          10. Modifica el estado en el servidor
          11. Otros
          12. HEAD
          13. TRACE
          14. PUT
          15. DELETE
          16. OPTIONS
          17. CONNECT
        2. URL
        3. Form parameters
      2. Response
        1. Status code
        2. Content-type (MIME)
          1. text/html
          2. text/xml
          3. application/pdf
          4. image/jpeg
        3. Contenido
        4. HTML es parte del response
    5. URL
      1. Uniform Resource Locators
    6. Limitaciones
      1. Sin estado
        1. Uso de cookies
  4. Referencias
    1. http://en.wikipedia.org/wiki/HTML
    2. http://www.slideshare.net/alagu/introduction-to-http
    3. Musciano, Chuck: HTML The Definitive Guide. O'Reilly & Associates
  5. Acerca de
    1. Topic
    2. Topic