Discussió:SessióWebs

De wikiTraba
Salta a la navegació Salta a la cerca

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>