SlideShare uma empresa Scribd logo
1 de 46
Baixar para ler offline
Diseño para la Red
Introducción a XHTML y CSS



Lic. en Diseño de Información Visual.
Otoño 2009.

Universidad de las Américas Puebla.

Mtro. Omar Sosa Tzec
http://www.tzek-design.com/blog
Como recordamos la idea de la que
partimos es la separación del contenido
de la presentación.
contenido   presentación
xhtml   css
CSS Zen Garden
http://www.csszengarden.com/
Un recurso básico para aprender herramientas para diseño y
desarrollo web:

http://www.w3schools.com/



* Para CSS es altamente recomendable repasar o aclarar dudas en:

http://www.w3schools.com/css/default.asp
CSS Cheat Sheet
http://www.addedbytes.com/cheat-sheets/css-cheat-sheet/
Sintaxis de una regla de estilo.
selector {propiedad: valor;}
selector {propiedad_1: valor; propiedad_2: valor;
propiedad_3: valor; propiedad_4: valor;}
selector {propiedad_1: valor;
          propiedad_2: valor;
          propiedad_3: valor;
          propiedad_4: valor;}
h1 {color: red;}
#principal {background-color: blue;}
.importante {font-weight: bold;}
h1 {color: red;}

#principal {background-color: blue;}

.importante {font-weight: bold;}


              css
h1 {color: red;}

#principal {background-color: blue;}

.importante {font-weight: bold;}


              css        ?             HTML
¿Cómo incrustamos “diseño” dentro de
la página web?
Cuando las reglas de estilo están en un archivo
separado del archivo con el XHTML.




              .html                               .css
También se puede meter el CSS dentro del
XHTML dentro de la etiqueta HEAD.



            Reglas
             CSS

             .html




                     Por cuestiones de administración mejor separar
                     las cosas en archivos diferentes.
.swf
                                .jpg




             .html                       .css




                                   .js
Administración óptima.
Reglas
 CSS

.html
<html>
     <head>
        <title>Título de una página web con ISO en occidental/europeo</title>
     <style>

     </style>
     </head>

     <body>
        .
        .
        .
     </body>
</html>
<html>
     <head>
        <title>Título de una página web con ISO en occidental/europeo</title>
     <style>
             body {
                     font: Arial;
                      background-color: navy;
     }
             h1{
                     font-size:22px;
                     color:white;
     }
     </style>
     </head>

     <body>
        <h1>Hola Mundo!!! </h1>
     </body>
</html>
<html>
     <head>
        <title>Título de una página web con ISO en occidental/europeo</title>
     <style>
             body {
                     font: Arial;
                      background-color: navy;
     }
             h1{
                     font-size:22px;
                     color:white;
     }
     </style>
     </head>

     <body>
        <h1>Hola Mundo!!! </h1>
     </body>
</html>
<html>
     <head>
        <title>Título de una página web con ISO en occidental/europeo</title>
     <style>
             body {
                     font: Arial;
                      background-color: navy;
     }
             h1{
                     font-size:22px;
                     color:white;
     }
     </style>
     </head>

     <body>
        <h1>Hola Mundo!!! </h1>
     </body>
</html>
.html   .css
Original.

<html>
     <head>
        <title>Título de una página web con ISO en occidental/europeo</title>
     <style>
             body {
                     font: Arial;
                      background-color: navy;
     }
             h1{
                     font-size:22px;
                     color:white;
     }
     </style>
     </head>

     <body>
        <h1>Hola Mundo!!! </h1>
     </body>
</html>
Quitamos las reglas de estilo del HEAD.

<html>
     <head>
        <title>Título de una página web con ISO en occidental/europeo</title>
     </head>

     <body>
        <h1>Hola Mundo!!! </h1>
     </body>
</html>
Este es el archivo .html

<html>
     <head>
        <title>Título de una página web con ISO en occidental/europeo</title>
     </head>

     <body>
        <h1>Hola Mundo!!! </h1>
     </body>
</html>
En otro archivo colocamos las reglas.

    body {
             font: Arial;
             background-color: navy;
    }


    h1{
             font-size:22px;
             color:white;
    }
Este es el archivo .css

    body {
             font: Arial;
             background-color: navy;
    }


    h1{
             font-size:22px;
             color:white;
    }
Quitamos las reglas de estilo del HEAD.

<html>
     <head>
        <title>Título de una página web con ISO en occidental/europeo</title>
        <link rel="stylesheet" type="text/css" href="miestilo.css" />
     </head>

     <body>
        <h1>Hola Mundo!!! </h1>
     </body>
</html>
Mayor información sobre la etiqueta link:

http://www.w3schools.com/TAGS/tag_link.asp
No olvidar la organización y
manejo de archivos.
carpeta




          index.html




          miestilo.css
<html>
     <head>
        <title>Título de una página web con ISO en occidental/europeo</title>
        <link rel="stylesheet" type="text/css" href="miestilo.css" />
     </head>

     <body>
        <h1>Hola Mundo!!! </h1>
     </body>
</html>
carpeta01




               index.html




            carpeta02




                            miestilo.css
Quitamos las reglas de estilo del HEAD.

<html>
     <head>
        <title>Título de una página web con ISO en occidental/europeo</title>
        <link rel="stylesheet" type="text/css" href="carpeta02/miestilo.css" />
     </head>

     <body>
        <h1>Hola Mundo!!! </h1>
     </body>
</html>
h1 {color: red;}

#principal {background-color: blue;}

.importante {font-weight: bold;}


              css
En el CSS     En el XHTML



h1            <h1></h1>

#principal    id=”principal”

.importante   class=”importante”
Básico: el manejo de color en pantalla.

(R, G, B) - 8 bits de profundidad (de 0 a 255).

#RGB - 8 bits de profundidad (de 0 a FF).
(0,0,0) = #000000 = #000

(255,255, 255) = #ffffff = #fff

(255, 0, 0) = #ff0000

(197, 175, 228) = #cbade7
Recurso básico para sacar esquemas de color:

http://colorschemedesigner.com/
Background.

  •   background-color
  •   background-image
  •   background-repeat
  •   background-position
  •   background-position
M
Font.

  •     font-family
  •     font-style
  •     font-size
  •     font-variant
  •     font-weight

Mais conteúdo relacionado

Mais procurados (18)

partes de un pagina
partes de un paginapartes de un pagina
partes de un pagina
 
CSS
CSSCSS
CSS
 
Paginafgwwfgwegf
PaginafgwwfgwegfPaginafgwwfgwegf
Paginafgwwfgwegf
 
HTML Primeras etiquetas
HTML Primeras etiquetasHTML Primeras etiquetas
HTML Primeras etiquetas
 
Santiago
SantiagoSantiago
Santiago
 
Semana 3 Introduccion CSS
Semana 3   Introduccion CSSSemana 3   Introduccion CSS
Semana 3 Introduccion CSS
 
Programacion web
Programacion webProgramacion web
Programacion web
 
HTML
HTMLHTML
HTML
 
Colegio nacional nicolas esguerra
Colegio nacional nicolas esguerraColegio nacional nicolas esguerra
Colegio nacional nicolas esguerra
 
Moniquita
MoniquitaMoniquita
Moniquita
 
Desarrollo web inteligente
Desarrollo web inteligenteDesarrollo web inteligente
Desarrollo web inteligente
 
Una Página WEB
Una Página WEBUna Página WEB
Una Página WEB
 
Html
HtmlHtml
Html
 
HTML5, CSS3, Responsive Design
HTML5, CSS3, Responsive DesignHTML5, CSS3, Responsive Design
HTML5, CSS3, Responsive Design
 
HTML y CSS
HTML y CSSHTML y CSS
HTML y CSS
 
CSS Hoja de estilo en cascada
CSS   Hoja de estilo en cascadaCSS   Hoja de estilo en cascada
CSS Hoja de estilo en cascada
 
Taller de Maquetación Web
Taller de Maquetación WebTaller de Maquetación Web
Taller de Maquetación Web
 
Clase Nº 1 - HTML
Clase Nº 1 - HTMLClase Nº 1 - HTML
Clase Nº 1 - HTML
 

Destaque

蔡学镛 - 深入浅出符合事件处理
蔡学镛 - 深入浅出符合事件处理蔡学镛 - 深入浅出符合事件处理
蔡学镛 - 深入浅出符合事件处理d0nn9n
 
Инновационный бизнес-инкубатор: ИННОВАТЕЛЬ - первый в мире расширенный бизнес...
Инновационный бизнес-инкубатор: ИННОВАТЕЛЬ - первый в мире расширенный бизнес...Инновационный бизнес-инкубатор: ИННОВАТЕЛЬ - первый в мире расширенный бизнес...
Инновационный бизнес-инкубатор: ИННОВАТЕЛЬ - первый в мире расширенный бизнес...Vadim Kotelnikov
 
Pwd voiles a l'horizo nop
Pwd voiles a l'horizo nopPwd voiles a l'horizo nop
Pwd voiles a l'horizo nopeosorio
 
Direitos autorais
Direitos autoraisDireitos autorais
Direitos autoraismacsuell
 
Индивидуальное продвижение - шаг в сторону продвижения по лидам
Индивидуальное продвижение - шаг в сторону продвижения по лидамИндивидуальное продвижение - шаг в сторону продвижения по лидам
Индивидуальное продвижение - шаг в сторону продвижения по лидамMegaIndexTV
 
УСПЕШНЫЕ ИННОВАЦИИ (вдохновляющий бизнес-план, составленный из цитат об иннов...
УСПЕШНЫЕ ИННОВАЦИИ (вдохновляющий бизнес-план, составленный из цитат об иннов...УСПЕШНЫЕ ИННОВАЦИИ (вдохновляющий бизнес-план, составленный из цитат об иннов...
УСПЕШНЫЕ ИННОВАЦИИ (вдохновляющий бизнес-план, составленный из цитат об иннов...Vadim Kotelnikov
 
Skuteczne prezentacje biznesowe
Skuteczne prezentacje biznesoweSkuteczne prezentacje biznesowe
Skuteczne prezentacje biznesoweEbooki za darmo
 
Investing in Natural Assets. A business case for the environment in the City ...
Investing in Natural Assets. A business case for the environment in the City ...Investing in Natural Assets. A business case for the environment in the City ...
Investing in Natural Assets. A business case for the environment in the City ...Martin de Wit
 
Andreas sick ass powerpoint 1
Andreas sick ass powerpoint 1Andreas sick ass powerpoint 1
Andreas sick ass powerpoint 1Andrea Rodriguez
 
E-Biznes poleca - recenzje ksiazek e-biznesowych
E-Biznes poleca - recenzje ksiazek e-biznesowychE-Biznes poleca - recenzje ksiazek e-biznesowych
E-Biznes poleca - recenzje ksiazek e-biznesowychEbooki za darmo
 
Paulking groovy
Paulking groovyPaulking groovy
Paulking groovyd0nn9n
 
Huangjing renren
Huangjing renrenHuangjing renren
Huangjing renrend0nn9n
 

Destaque (20)

蔡学镛 - 深入浅出符合事件处理
蔡学镛 - 深入浅出符合事件处理蔡学镛 - 深入浅出符合事件处理
蔡学镛 - 深入浅出符合事件处理
 
Инновационный бизнес-инкубатор: ИННОВАТЕЛЬ - первый в мире расширенный бизнес...
Инновационный бизнес-инкубатор: ИННОВАТЕЛЬ - первый в мире расширенный бизнес...Инновационный бизнес-инкубатор: ИННОВАТЕЛЬ - первый в мире расширенный бизнес...
Инновационный бизнес-инкубатор: ИННОВАТЕЛЬ - первый в мире расширенный бизнес...
 
Nowoczesna firma
Nowoczesna firmaNowoczesna firma
Nowoczesna firma
 
Inżynieria umysłu
Inżynieria umysłuInżynieria umysłu
Inżynieria umysłu
 
Pwd voiles a l'horizo nop
Pwd voiles a l'horizo nopPwd voiles a l'horizo nop
Pwd voiles a l'horizo nop
 
Direitos autorais
Direitos autoraisDireitos autorais
Direitos autorais
 
Индивидуальное продвижение - шаг в сторону продвижения по лидам
Индивидуальное продвижение - шаг в сторону продвижения по лидамИндивидуальное продвижение - шаг в сторону продвижения по лидам
Индивидуальное продвижение - шаг в сторону продвижения по лидам
 
Salvador Dali
Salvador DaliSalvador Dali
Salvador Dali
 
УСПЕШНЫЕ ИННОВАЦИИ (вдохновляющий бизнес-план, составленный из цитат об иннов...
УСПЕШНЫЕ ИННОВАЦИИ (вдохновляющий бизнес-план, составленный из цитат об иннов...УСПЕШНЫЕ ИННОВАЦИИ (вдохновляющий бизнес-план, составленный из цитат об иннов...
УСПЕШНЫЕ ИННОВАЦИИ (вдохновляющий бизнес-план, составленный из цитат об иннов...
 
Skuteczne prezentacje biznesowe
Skuteczne prezentacje biznesoweSkuteczne prezentacje biznesowe
Skuteczne prezentacje biznesowe
 
Investing in Natural Assets. A business case for the environment in the City ...
Investing in Natural Assets. A business case for the environment in the City ...Investing in Natural Assets. A business case for the environment in the City ...
Investing in Natural Assets. A business case for the environment in the City ...
 
Klucz do podswiadomosci
Klucz do podswiadomosciKlucz do podswiadomosci
Klucz do podswiadomosci
 
Szkola sukcesu
Szkola sukcesuSzkola sukcesu
Szkola sukcesu
 
Andreas sick ass powerpoint 1
Andreas sick ass powerpoint 1Andreas sick ass powerpoint 1
Andreas sick ass powerpoint 1
 
E-Biznes poleca - recenzje ksiazek e-biznesowych
E-Biznes poleca - recenzje ksiazek e-biznesowychE-Biznes poleca - recenzje ksiazek e-biznesowych
E-Biznes poleca - recenzje ksiazek e-biznesowych
 
Paulking groovy
Paulking groovyPaulking groovy
Paulking groovy
 
Huangjing renren
Huangjing renrenHuangjing renren
Huangjing renren
 
What is LT ?
What is LT ?What is LT ?
What is LT ?
 
Kobieta a mezczyzna
Kobieta a mezczyznaKobieta a mezczyzna
Kobieta a mezczyzna
 
Sellos adc
Sellos adcSellos adc
Sellos adc
 

Semelhante a Introducción a CSS en XHTML

Semelhante a Introducción a CSS en XHTML (20)

Html guia 1
Html guia 1 Html guia 1
Html guia 1
 
Etilos
Etilos Etilos
Etilos
 
Clase 6 twig
Clase 6 twigClase 6 twig
Clase 6 twig
 
Html
HtmlHtml
Html
 
Html actividades 1
Html actividades  1Html actividades  1
Html actividades 1
 
Sitio Web / Introducción a HTML
Sitio Web / Introducción a HTMLSitio Web / Introducción a HTML
Sitio Web / Introducción a HTML
 
Tema 9 - Estructura con css
Tema 9 - Estructura con cssTema 9 - Estructura con css
Tema 9 - Estructura con css
 
Presentación CSS y HTML en Gummurcia
Presentación CSS y HTML en GummurciaPresentación CSS y HTML en Gummurcia
Presentación CSS y HTML en Gummurcia
 
CSS
CSSCSS
CSS
 
MEJORES - Curso-HTML-+-CSS.pdf
MEJORES - Curso-HTML-+-CSS.pdfMEJORES - Curso-HTML-+-CSS.pdf
MEJORES - Curso-HTML-+-CSS.pdf
 
Curso-HTML--CSS.pdf
Curso-HTML--CSS.pdfCurso-HTML--CSS.pdf
Curso-HTML--CSS.pdf
 
Deber de Programación Web / Etiquetas mas utilizadas del lenguaje html
Deber de Programación Web / Etiquetas mas utilizadas del lenguaje htmlDeber de Programación Web / Etiquetas mas utilizadas del lenguaje html
Deber de Programación Web / Etiquetas mas utilizadas del lenguaje html
 
Deber de Programacion Web
Deber de Programacion WebDeber de Programacion Web
Deber de Programacion Web
 
Etiquetas mas utilizadas del lenguaje html
Etiquetas mas utilizadas del lenguaje htmlEtiquetas mas utilizadas del lenguaje html
Etiquetas mas utilizadas del lenguaje html
 
Clase 1 - Introducción HTML.pptx
Clase 1 - Introducción HTML.pptxClase 1 - Introducción HTML.pptx
Clase 1 - Introducción HTML.pptx
 
Css power
Css powerCss power
Css power
 
Diseño de paginas con html1
Diseño de paginas con html1Diseño de paginas con html1
Diseño de paginas con html1
 
Seo para prestashop V.2
Seo para prestashop V.2Seo para prestashop V.2
Seo para prestashop V.2
 
Conceptos basicos prog web introduccion a html y css
Conceptos basicos prog web   introduccion a html y cssConceptos basicos prog web   introduccion a html y css
Conceptos basicos prog web introduccion a html y css
 
Codigo html
Codigo htmlCodigo html
Codigo html
 

Mais de Omar Sosa-Tzec

Digital Wellbeing Technology through a Social Semiotic Multimodal Lens: A Cas...
Digital Wellbeing Technology through a Social Semiotic Multimodal Lens: A Cas...Digital Wellbeing Technology through a Social Semiotic Multimodal Lens: A Cas...
Digital Wellbeing Technology through a Social Semiotic Multimodal Lens: A Cas...Omar Sosa-Tzec
 
Delight in the User Experience: Form and Place
Delight in the User Experience: Form and PlaceDelight in the User Experience: Form and Place
Delight in the User Experience: Form and PlaceOmar Sosa-Tzec
 
Delight by Motion: Investigating the Role of Animation in Microinteractions
Delight by Motion: Investigating the Role of Animation in MicrointeractionsDelight by Motion: Investigating the Role of Animation in Microinteractions
Delight by Motion: Investigating the Role of Animation in MicrointeractionsOmar Sosa-Tzec
 
Critical Design Research and Constructive Research Outcomes as Arguments
Critical Design Research and Constructive Research Outcomes as ArgumentsCritical Design Research and Constructive Research Outcomes as Arguments
Critical Design Research and Constructive Research Outcomes as ArgumentsOmar Sosa-Tzec
 
Creative Data and Information Visualization: Reflections on Two Pedagogical A...
Creative Data and Information Visualization: Reflections on Two Pedagogical A...Creative Data and Information Visualization: Reflections on Two Pedagogical A...
Creative Data and Information Visualization: Reflections on Two Pedagogical A...Omar Sosa-Tzec
 
Teaching Design, Information, and Interaction: Reflections, Foundations, and ...
Teaching Design, Information, and Interaction: Reflections, Foundations, and ...Teaching Design, Information, and Interaction: Reflections, Foundations, and ...
Teaching Design, Information, and Interaction: Reflections, Foundations, and ...Omar Sosa-Tzec
 
Visualizing Data Trails: Metaphors and a Symbolic Language for Interfaces
Visualizing Data Trails: Metaphors and a Symbolic Language for InterfacesVisualizing Data Trails: Metaphors and a Symbolic Language for Interfaces
Visualizing Data Trails: Metaphors and a Symbolic Language for InterfacesOmar Sosa-Tzec
 
Communicating design-related intellectual influence: towards visual references
 Communicating design-related intellectual influence: towards visual references Communicating design-related intellectual influence: towards visual references
Communicating design-related intellectual influence: towards visual referencesOmar Sosa-Tzec
 
Design tensions: Interaction Criticism on Instagram’s Mobile Interface
Design tensions: Interaction Criticism on Instagram’s Mobile InterfaceDesign tensions: Interaction Criticism on Instagram’s Mobile Interface
Design tensions: Interaction Criticism on Instagram’s Mobile InterfaceOmar Sosa-Tzec
 
Interacciones Encantadoras: Interfaces de Usuario desde una Perspectiva Semió...
Interacciones Encantadoras: Interfaces de Usuario desde una Perspectiva Semió...Interacciones Encantadoras: Interfaces de Usuario desde una Perspectiva Semió...
Interacciones Encantadoras: Interfaces de Usuario desde una Perspectiva Semió...Omar Sosa-Tzec
 
My fascination with the visual: meaning, persuasion, and delight
My fascination with the visual: meaning, persuasion, and delightMy fascination with the visual: meaning, persuasion, and delight
My fascination with the visual: meaning, persuasion, and delightOmar Sosa-Tzec
 
Visual Design for Interface and Experience Design
Visual Design for Interface and Experience DesignVisual Design for Interface and Experience Design
Visual Design for Interface and Experience DesignOmar Sosa-Tzec
 
Affordances, Constraints, and Feedback in User Experience Design
Affordances, Constraints, and Feedback in User Experience DesignAffordances, Constraints, and Feedback in User Experience Design
Affordances, Constraints, and Feedback in User Experience DesignOmar Sosa-Tzec
 
User Experience Design, Navigation, and Interaction Flows
User Experience Design, Navigation, and Interaction FlowsUser Experience Design, Navigation, and Interaction Flows
User Experience Design, Navigation, and Interaction FlowsOmar Sosa-Tzec
 
Introduction to Human-Computer Interaction and Interaction Design
Introduction to Human-Computer Interaction and Interaction DesignIntroduction to Human-Computer Interaction and Interaction Design
Introduction to Human-Computer Interaction and Interaction DesignOmar Sosa-Tzec
 
Takeaways from the course Visual Design for User Experience
Takeaways from the course Visual Design for User ExperienceTakeaways from the course Visual Design for User Experience
Takeaways from the course Visual Design for User ExperienceOmar Sosa-Tzec
 
Introduction to Visual Design for User Experience
Introduction to Visual Design for User ExperienceIntroduction to Visual Design for User Experience
Introduction to Visual Design for User ExperienceOmar Sosa-Tzec
 
Sometimes a sign, sometimes a figure
Sometimes a sign, sometimes a figureSometimes a sign, sometimes a figure
Sometimes a sign, sometimes a figureOmar Sosa-Tzec
 
Principios de Diseño Visual para Interacción Humano-Computadora
Principios de Diseño Visual para Interacción Humano-ComputadoraPrincipios de Diseño Visual para Interacción Humano-Computadora
Principios de Diseño Visual para Interacción Humano-ComputadoraOmar Sosa-Tzec
 

Mais de Omar Sosa-Tzec (20)

Digital Wellbeing Technology through a Social Semiotic Multimodal Lens: A Cas...
Digital Wellbeing Technology through a Social Semiotic Multimodal Lens: A Cas...Digital Wellbeing Technology through a Social Semiotic Multimodal Lens: A Cas...
Digital Wellbeing Technology through a Social Semiotic Multimodal Lens: A Cas...
 
Delight in the User Experience: Form and Place
Delight in the User Experience: Form and PlaceDelight in the User Experience: Form and Place
Delight in the User Experience: Form and Place
 
Delight by Motion: Investigating the Role of Animation in Microinteractions
Delight by Motion: Investigating the Role of Animation in MicrointeractionsDelight by Motion: Investigating the Role of Animation in Microinteractions
Delight by Motion: Investigating the Role of Animation in Microinteractions
 
Critical Design Research and Constructive Research Outcomes as Arguments
Critical Design Research and Constructive Research Outcomes as ArgumentsCritical Design Research and Constructive Research Outcomes as Arguments
Critical Design Research and Constructive Research Outcomes as Arguments
 
Creative Data and Information Visualization: Reflections on Two Pedagogical A...
Creative Data and Information Visualization: Reflections on Two Pedagogical A...Creative Data and Information Visualization: Reflections on Two Pedagogical A...
Creative Data and Information Visualization: Reflections on Two Pedagogical A...
 
Teaching Design, Information, and Interaction: Reflections, Foundations, and ...
Teaching Design, Information, and Interaction: Reflections, Foundations, and ...Teaching Design, Information, and Interaction: Reflections, Foundations, and ...
Teaching Design, Information, and Interaction: Reflections, Foundations, and ...
 
Visualizing Data Trails: Metaphors and a Symbolic Language for Interfaces
Visualizing Data Trails: Metaphors and a Symbolic Language for InterfacesVisualizing Data Trails: Metaphors and a Symbolic Language for Interfaces
Visualizing Data Trails: Metaphors and a Symbolic Language for Interfaces
 
Communicating design-related intellectual influence: towards visual references
 Communicating design-related intellectual influence: towards visual references Communicating design-related intellectual influence: towards visual references
Communicating design-related intellectual influence: towards visual references
 
Design tensions: Interaction Criticism on Instagram’s Mobile Interface
Design tensions: Interaction Criticism on Instagram’s Mobile InterfaceDesign tensions: Interaction Criticism on Instagram’s Mobile Interface
Design tensions: Interaction Criticism on Instagram’s Mobile Interface
 
Interacciones Encantadoras: Interfaces de Usuario desde una Perspectiva Semió...
Interacciones Encantadoras: Interfaces de Usuario desde una Perspectiva Semió...Interacciones Encantadoras: Interfaces de Usuario desde una Perspectiva Semió...
Interacciones Encantadoras: Interfaces de Usuario desde una Perspectiva Semió...
 
My fascination with the visual: meaning, persuasion, and delight
My fascination with the visual: meaning, persuasion, and delightMy fascination with the visual: meaning, persuasion, and delight
My fascination with the visual: meaning, persuasion, and delight
 
Visual Design for Interface and Experience Design
Visual Design for Interface and Experience DesignVisual Design for Interface and Experience Design
Visual Design for Interface and Experience Design
 
Affordances, Constraints, and Feedback in User Experience Design
Affordances, Constraints, and Feedback in User Experience DesignAffordances, Constraints, and Feedback in User Experience Design
Affordances, Constraints, and Feedback in User Experience Design
 
User Experience Design, Navigation, and Interaction Flows
User Experience Design, Navigation, and Interaction FlowsUser Experience Design, Navigation, and Interaction Flows
User Experience Design, Navigation, and Interaction Flows
 
Introduction to Human-Computer Interaction and Interaction Design
Introduction to Human-Computer Interaction and Interaction DesignIntroduction to Human-Computer Interaction and Interaction Design
Introduction to Human-Computer Interaction and Interaction Design
 
Takeaways from the course Visual Design for User Experience
Takeaways from the course Visual Design for User ExperienceTakeaways from the course Visual Design for User Experience
Takeaways from the course Visual Design for User Experience
 
Introduction to Visual Design for User Experience
Introduction to Visual Design for User ExperienceIntroduction to Visual Design for User Experience
Introduction to Visual Design for User Experience
 
Sometimes a sign, sometimes a figure
Sometimes a sign, sometimes a figureSometimes a sign, sometimes a figure
Sometimes a sign, sometimes a figure
 
Principios de Diseño Visual para Interacción Humano-Computadora
Principios de Diseño Visual para Interacción Humano-ComputadoraPrincipios de Diseño Visual para Interacción Humano-Computadora
Principios de Diseño Visual para Interacción Humano-Computadora
 
HCI Seminar Fall 2015
HCI Seminar Fall 2015HCI Seminar Fall 2015
HCI Seminar Fall 2015
 

Último

decoración día del idioma, MARIPOSAS Y FESTONES
decoración día del idioma, MARIPOSAS Y FESTONESdecoración día del idioma, MARIPOSAS Y FESTONES
decoración día del idioma, MARIPOSAS Y FESTONESMairaLasso1
 
Diapositiva de la ansiedad...para poder enfrentarlo
Diapositiva de la ansiedad...para poder enfrentarloDiapositiva de la ansiedad...para poder enfrentarlo
Diapositiva de la ansiedad...para poder enfrentarlojefeer060122
 
Hitos de la Historia de la universidad de Cartagena 2024
Hitos de la Historia de la universidad de Cartagena 2024Hitos de la Historia de la universidad de Cartagena 2024
Hitos de la Historia de la universidad de Cartagena 20242024 GCA
 
Diseño y concepto DOC-20240412-WA0023..pdf
Diseño y concepto DOC-20240412-WA0023..pdfDiseño y concepto DOC-20240412-WA0023..pdf
Diseño y concepto DOC-20240412-WA0023..pdfSharonSmis
 
Diseño ( concepto-caracteristicas y herramientas para el diseño.pdf
Diseño ( concepto-caracteristicas y herramientas para el diseño.pdfDiseño ( concepto-caracteristicas y herramientas para el diseño.pdf
Diseño ( concepto-caracteristicas y herramientas para el diseño.pdfSharonSmis
 
REVESTIMIENTON PROCESO CONSTRUCTIVO DDDDDDDDD
REVESTIMIENTON PROCESO CONSTRUCTIVO DDDDDDDDDREVESTIMIENTON PROCESO CONSTRUCTIVO DDDDDDDDD
REVESTIMIENTON PROCESO CONSTRUCTIVO DDDDDDDDDElenitaIriarte1
 
Parque lineal Los Lirios en las márgenes del arroyo Navajuelos, en San Cristó...
Parque lineal Los Lirios en las márgenes del arroyo Navajuelos, en San Cristó...Parque lineal Los Lirios en las márgenes del arroyo Navajuelos, en San Cristó...
Parque lineal Los Lirios en las márgenes del arroyo Navajuelos, en San Cristó...UNACH - Facultad de Arquitectura.
 
Miriam Tello / Interdisciplinariedad en el diseño / tfm uned 2015
Miriam Tello / Interdisciplinariedad en el diseño / tfm uned 2015Miriam Tello / Interdisciplinariedad en el diseño / tfm uned 2015
Miriam Tello / Interdisciplinariedad en el diseño / tfm uned 2015Miriam Tello
 
2DA SEMANA ABRIL proyecto nivel inicial 3 y 4 años
2DA SEMANA ABRIL proyecto nivel inicial 3 y 4 años2DA SEMANA ABRIL proyecto nivel inicial 3 y 4 años
2DA SEMANA ABRIL proyecto nivel inicial 3 y 4 añosMilagrosMnstx
 
669852196-Manejo-de-Las-Principales-Cuentas-Contables-pptx.pdf
669852196-Manejo-de-Las-Principales-Cuentas-Contables-pptx.pdf669852196-Manejo-de-Las-Principales-Cuentas-Contables-pptx.pdf
669852196-Manejo-de-Las-Principales-Cuentas-Contables-pptx.pdfyolandavalencia19
 
CARACTERIZACIÓN MEDICINA ALTERNATIVA Y TERAPIAS COMPLEMENTARIAS.pdf
CARACTERIZACIÓN MEDICINA ALTERNATIVA Y TERAPIAS COMPLEMENTARIAS.pdfCARACTERIZACIÓN MEDICINA ALTERNATIVA Y TERAPIAS COMPLEMENTARIAS.pdf
CARACTERIZACIÓN MEDICINA ALTERNATIVA Y TERAPIAS COMPLEMENTARIAS.pdfsolidalilaalvaradoro
 
trabajo de Texto Escrito y Cómo Aplicarlas.pdf
trabajo de Texto Escrito y Cómo Aplicarlas.pdftrabajo de Texto Escrito y Cómo Aplicarlas.pdf
trabajo de Texto Escrito y Cómo Aplicarlas.pdfcpachecot
 
DISIPADORES-DE-ENERGIA-DIAPOSITIVAS.pptx
DISIPADORES-DE-ENERGIA-DIAPOSITIVAS.pptxDISIPADORES-DE-ENERGIA-DIAPOSITIVAS.pptx
DISIPADORES-DE-ENERGIA-DIAPOSITIVAS.pptxPercyTineoPongo1
 
INSTRUCTIVO PARA RIESGOS DE TRABAJO SART2 iess.pdf
INSTRUCTIVO PARA RIESGOS DE TRABAJO SART2 iess.pdfINSTRUCTIVO PARA RIESGOS DE TRABAJO SART2 iess.pdf
INSTRUCTIVO PARA RIESGOS DE TRABAJO SART2 iess.pdfautomatechcv
 
elracismoati-131016234518-phpapp01.jjjpptx
elracismoati-131016234518-phpapp01.jjjpptxelracismoati-131016234518-phpapp01.jjjpptx
elracismoati-131016234518-phpapp01.jjjpptxFAngelChaupisGarcia
 
Plantilla árbol de problemas psico..pptx
Plantilla árbol de problemas psico..pptxPlantilla árbol de problemas psico..pptx
Plantilla árbol de problemas psico..pptxYasmilia
 
exposuturas.pptxffffffffffffffffffffffffffffff
exposuturas.pptxffffffffffffffffffffffffffffffexposuturas.pptxffffffffffffffffffffffffffffff
exposuturas.pptxffffffffffffffffffffffffffffffCesarQuiroz35
 
CRITERIOS_GENERALES_DE_ISOPTICA_Y_ACUSTI.pdf
CRITERIOS_GENERALES_DE_ISOPTICA_Y_ACUSTI.pdfCRITERIOS_GENERALES_DE_ISOPTICA_Y_ACUSTI.pdf
CRITERIOS_GENERALES_DE_ISOPTICA_Y_ACUSTI.pdfpaulmaqueda395
 
Presentación trastornos mentales en niños.pptx
Presentación trastornos mentales en niños.pptxPresentación trastornos mentales en niños.pptx
Presentación trastornos mentales en niños.pptxissacicsem
 
TÉCNICAS GRÁFICAS PARA ARQUITECTOS Y DISEÑADORES.pdf
TÉCNICAS GRÁFICAS PARA ARQUITECTOS Y DISEÑADORES.pdfTÉCNICAS GRÁFICAS PARA ARQUITECTOS Y DISEÑADORES.pdf
TÉCNICAS GRÁFICAS PARA ARQUITECTOS Y DISEÑADORES.pdfkevinramirezd069bps
 

Último (20)

decoración día del idioma, MARIPOSAS Y FESTONES
decoración día del idioma, MARIPOSAS Y FESTONESdecoración día del idioma, MARIPOSAS Y FESTONES
decoración día del idioma, MARIPOSAS Y FESTONES
 
Diapositiva de la ansiedad...para poder enfrentarlo
Diapositiva de la ansiedad...para poder enfrentarloDiapositiva de la ansiedad...para poder enfrentarlo
Diapositiva de la ansiedad...para poder enfrentarlo
 
Hitos de la Historia de la universidad de Cartagena 2024
Hitos de la Historia de la universidad de Cartagena 2024Hitos de la Historia de la universidad de Cartagena 2024
Hitos de la Historia de la universidad de Cartagena 2024
 
Diseño y concepto DOC-20240412-WA0023..pdf
Diseño y concepto DOC-20240412-WA0023..pdfDiseño y concepto DOC-20240412-WA0023..pdf
Diseño y concepto DOC-20240412-WA0023..pdf
 
Diseño ( concepto-caracteristicas y herramientas para el diseño.pdf
Diseño ( concepto-caracteristicas y herramientas para el diseño.pdfDiseño ( concepto-caracteristicas y herramientas para el diseño.pdf
Diseño ( concepto-caracteristicas y herramientas para el diseño.pdf
 
REVESTIMIENTON PROCESO CONSTRUCTIVO DDDDDDDDD
REVESTIMIENTON PROCESO CONSTRUCTIVO DDDDDDDDDREVESTIMIENTON PROCESO CONSTRUCTIVO DDDDDDDDD
REVESTIMIENTON PROCESO CONSTRUCTIVO DDDDDDDDD
 
Parque lineal Los Lirios en las márgenes del arroyo Navajuelos, en San Cristó...
Parque lineal Los Lirios en las márgenes del arroyo Navajuelos, en San Cristó...Parque lineal Los Lirios en las márgenes del arroyo Navajuelos, en San Cristó...
Parque lineal Los Lirios en las márgenes del arroyo Navajuelos, en San Cristó...
 
Miriam Tello / Interdisciplinariedad en el diseño / tfm uned 2015
Miriam Tello / Interdisciplinariedad en el diseño / tfm uned 2015Miriam Tello / Interdisciplinariedad en el diseño / tfm uned 2015
Miriam Tello / Interdisciplinariedad en el diseño / tfm uned 2015
 
2DA SEMANA ABRIL proyecto nivel inicial 3 y 4 años
2DA SEMANA ABRIL proyecto nivel inicial 3 y 4 años2DA SEMANA ABRIL proyecto nivel inicial 3 y 4 años
2DA SEMANA ABRIL proyecto nivel inicial 3 y 4 años
 
669852196-Manejo-de-Las-Principales-Cuentas-Contables-pptx.pdf
669852196-Manejo-de-Las-Principales-Cuentas-Contables-pptx.pdf669852196-Manejo-de-Las-Principales-Cuentas-Contables-pptx.pdf
669852196-Manejo-de-Las-Principales-Cuentas-Contables-pptx.pdf
 
CARACTERIZACIÓN MEDICINA ALTERNATIVA Y TERAPIAS COMPLEMENTARIAS.pdf
CARACTERIZACIÓN MEDICINA ALTERNATIVA Y TERAPIAS COMPLEMENTARIAS.pdfCARACTERIZACIÓN MEDICINA ALTERNATIVA Y TERAPIAS COMPLEMENTARIAS.pdf
CARACTERIZACIÓN MEDICINA ALTERNATIVA Y TERAPIAS COMPLEMENTARIAS.pdf
 
trabajo de Texto Escrito y Cómo Aplicarlas.pdf
trabajo de Texto Escrito y Cómo Aplicarlas.pdftrabajo de Texto Escrito y Cómo Aplicarlas.pdf
trabajo de Texto Escrito y Cómo Aplicarlas.pdf
 
DISIPADORES-DE-ENERGIA-DIAPOSITIVAS.pptx
DISIPADORES-DE-ENERGIA-DIAPOSITIVAS.pptxDISIPADORES-DE-ENERGIA-DIAPOSITIVAS.pptx
DISIPADORES-DE-ENERGIA-DIAPOSITIVAS.pptx
 
INSTRUCTIVO PARA RIESGOS DE TRABAJO SART2 iess.pdf
INSTRUCTIVO PARA RIESGOS DE TRABAJO SART2 iess.pdfINSTRUCTIVO PARA RIESGOS DE TRABAJO SART2 iess.pdf
INSTRUCTIVO PARA RIESGOS DE TRABAJO SART2 iess.pdf
 
elracismoati-131016234518-phpapp01.jjjpptx
elracismoati-131016234518-phpapp01.jjjpptxelracismoati-131016234518-phpapp01.jjjpptx
elracismoati-131016234518-phpapp01.jjjpptx
 
Plantilla árbol de problemas psico..pptx
Plantilla árbol de problemas psico..pptxPlantilla árbol de problemas psico..pptx
Plantilla árbol de problemas psico..pptx
 
exposuturas.pptxffffffffffffffffffffffffffffff
exposuturas.pptxffffffffffffffffffffffffffffffexposuturas.pptxffffffffffffffffffffffffffffff
exposuturas.pptxffffffffffffffffffffffffffffff
 
CRITERIOS_GENERALES_DE_ISOPTICA_Y_ACUSTI.pdf
CRITERIOS_GENERALES_DE_ISOPTICA_Y_ACUSTI.pdfCRITERIOS_GENERALES_DE_ISOPTICA_Y_ACUSTI.pdf
CRITERIOS_GENERALES_DE_ISOPTICA_Y_ACUSTI.pdf
 
Presentación trastornos mentales en niños.pptx
Presentación trastornos mentales en niños.pptxPresentación trastornos mentales en niños.pptx
Presentación trastornos mentales en niños.pptx
 
TÉCNICAS GRÁFICAS PARA ARQUITECTOS Y DISEÑADORES.pdf
TÉCNICAS GRÁFICAS PARA ARQUITECTOS Y DISEÑADORES.pdfTÉCNICAS GRÁFICAS PARA ARQUITECTOS Y DISEÑADORES.pdf
TÉCNICAS GRÁFICAS PARA ARQUITECTOS Y DISEÑADORES.pdf
 

Introducción a CSS en XHTML

  • 1. Diseño para la Red Introducción a XHTML y CSS Lic. en Diseño de Información Visual. Otoño 2009. Universidad de las Américas Puebla. Mtro. Omar Sosa Tzec http://www.tzek-design.com/blog
  • 2. Como recordamos la idea de la que partimos es la separación del contenido de la presentación.
  • 3. contenido presentación
  • 4. xhtml css
  • 6. Un recurso básico para aprender herramientas para diseño y desarrollo web: http://www.w3schools.com/ * Para CSS es altamente recomendable repasar o aclarar dudas en: http://www.w3schools.com/css/default.asp
  • 8. Sintaxis de una regla de estilo.
  • 10. selector {propiedad_1: valor; propiedad_2: valor; propiedad_3: valor; propiedad_4: valor;}
  • 11. selector {propiedad_1: valor; propiedad_2: valor; propiedad_3: valor; propiedad_4: valor;}
  • 15. h1 {color: red;} #principal {background-color: blue;} .importante {font-weight: bold;} css
  • 16. h1 {color: red;} #principal {background-color: blue;} .importante {font-weight: bold;} css ? HTML
  • 17. ¿Cómo incrustamos “diseño” dentro de la página web?
  • 18. Cuando las reglas de estilo están en un archivo separado del archivo con el XHTML. .html .css
  • 19. También se puede meter el CSS dentro del XHTML dentro de la etiqueta HEAD. Reglas CSS .html Por cuestiones de administración mejor separar las cosas en archivos diferentes.
  • 20. .swf .jpg .html .css .js Administración óptima.
  • 22. <html> <head> <title>Título de una página web con ISO en occidental/europeo</title> <style> </style> </head> <body> . . . </body> </html>
  • 23. <html> <head> <title>Título de una página web con ISO en occidental/europeo</title> <style> body { font: Arial; background-color: navy; } h1{ font-size:22px; color:white; } </style> </head> <body> <h1>Hola Mundo!!! </h1> </body> </html>
  • 24. <html> <head> <title>Título de una página web con ISO en occidental/europeo</title> <style> body { font: Arial; background-color: navy; } h1{ font-size:22px; color:white; } </style> </head> <body> <h1>Hola Mundo!!! </h1> </body> </html>
  • 25. <html> <head> <title>Título de una página web con ISO en occidental/europeo</title> <style> body { font: Arial; background-color: navy; } h1{ font-size:22px; color:white; } </style> </head> <body> <h1>Hola Mundo!!! </h1> </body> </html>
  • 26. .html .css
  • 27. Original. <html> <head> <title>Título de una página web con ISO en occidental/europeo</title> <style> body { font: Arial; background-color: navy; } h1{ font-size:22px; color:white; } </style> </head> <body> <h1>Hola Mundo!!! </h1> </body> </html>
  • 28. Quitamos las reglas de estilo del HEAD. <html> <head> <title>Título de una página web con ISO en occidental/europeo</title> </head> <body> <h1>Hola Mundo!!! </h1> </body> </html>
  • 29. Este es el archivo .html <html> <head> <title>Título de una página web con ISO en occidental/europeo</title> </head> <body> <h1>Hola Mundo!!! </h1> </body> </html>
  • 30. En otro archivo colocamos las reglas. body { font: Arial; background-color: navy; } h1{ font-size:22px; color:white; }
  • 31. Este es el archivo .css body { font: Arial; background-color: navy; } h1{ font-size:22px; color:white; }
  • 32. Quitamos las reglas de estilo del HEAD. <html> <head> <title>Título de una página web con ISO en occidental/europeo</title> <link rel="stylesheet" type="text/css" href="miestilo.css" /> </head> <body> <h1>Hola Mundo!!! </h1> </body> </html>
  • 33. Mayor información sobre la etiqueta link: http://www.w3schools.com/TAGS/tag_link.asp
  • 34. No olvidar la organización y manejo de archivos.
  • 35. carpeta index.html miestilo.css
  • 36. <html> <head> <title>Título de una página web con ISO en occidental/europeo</title> <link rel="stylesheet" type="text/css" href="miestilo.css" /> </head> <body> <h1>Hola Mundo!!! </h1> </body> </html>
  • 37. carpeta01 index.html carpeta02 miestilo.css
  • 38. Quitamos las reglas de estilo del HEAD. <html> <head> <title>Título de una página web con ISO en occidental/europeo</title> <link rel="stylesheet" type="text/css" href="carpeta02/miestilo.css" /> </head> <body> <h1>Hola Mundo!!! </h1> </body> </html>
  • 39. h1 {color: red;} #principal {background-color: blue;} .importante {font-weight: bold;} css
  • 40. En el CSS En el XHTML h1 <h1></h1> #principal id=”principal” .importante class=”importante”
  • 41. Básico: el manejo de color en pantalla. (R, G, B) - 8 bits de profundidad (de 0 a 255). #RGB - 8 bits de profundidad (de 0 a FF).
  • 42. (0,0,0) = #000000 = #000 (255,255, 255) = #ffffff = #fff (255, 0, 0) = #ff0000 (197, 175, 228) = #cbade7
  • 43. Recurso básico para sacar esquemas de color: http://colorschemedesigner.com/
  • 44. Background. • background-color • background-image • background-repeat • background-position • background-position
  • 45. M
  • 46. Font. • font-family • font-style • font-size • font-variant • font-weight