Discussió:SessióWebs: diferència entre les revisions

De wikiTraba
Salta a la navegació Salta a la cerca
Cap resum de modificació
Cap resum de modificació
 
Línia 35: Línia 35:
  </head>
  </head>
  <body></nowiki>
  <body></nowiki>
igual te interesa aqui muestran como hacer output web editable graficamente, (mover imagenes, cambiar ordenes de listas, o editar texto haciendo dobleclick en un parrafo.
[http://tool-man.org/examples/edit-in-place.html#slideshow-example javascript y css editable]

Revisió de 19:22, 6 ago 2005

Acrida para mi.

  • para css externos guardar nombre.css y en el html poner en el head:
<link rel="stylesheet" type="text/css" href="test.css" />
  • para css embedded, ponemos en el head del html:
<style type="text/css">
 body {
 background: #fff;
 color: #000;
 }
 h1, h2 {
 font-style: italic;
 font-weight: bold;
 color: blue;
 }
 </style>
  • para css inline:
<h2 style="color: red; background: green;">
 This will appear in bold red italics on a green background;
 the style for h2 defined above is partly overriden.
 </h2>


Y para el javascript externo:

<html>
 <head>
 <script src="jscript/myjs.js">
 </script>
 </head>
 <body>

igual te interesa aqui muestran como hacer output web editable graficamente, (mover imagenes, cambiar ordenes de listas, o editar texto haciendo dobleclick en un parrafo. javascript y css editable