Enlaces Avanzados <a>

    <body>
        <p>
            <a href="#C4"> Ver el capitulo 4 </a>
        </p>
            
        ....
            
        <h2><a name="C4">Capitulo 4</a></h2>
            
        ....
            
    </body>
        


Enlaces Avanzados <a>

    <body>
        <p>
            <a> href="http://www.google.com">Busca en google!!</a>
        </p>
            
        ....
                    
    </body>
        


Insertar imagen <img>

    <body>
        <p>
            <img src="imagen.gif">
        </p>
        
        <p>
            <img src="imagen.gif" height="42" width="42">
        </p>
            
        ....
                    
    </body>
        


Texto preformateado

    <pre>
    Keep
        Calm
            and
        Curry
    On
    </pre>        
        


Parrafo

    <p>
    Keep
        Calm
            and
        Curry
    On
    </p>        
        

Tamaños y tipos de letra

    <h1>Texto</h1>
    <h2>Texto</h2>
    <h3>Texto</h3>
    <h4>Texto</h4>
    <h5>Texto</h5>
    <h6>Texto</h6>
        


Texto en color

    <font color=blue>HOOOOLA </font>
        


Texto centrado

    textotexto
    <center>Titulo</center>
    textotexto
    


Formato de Texto

    <b>Texto en negrita</b>
    <i>Texto en italica</i>
    <u>Texto subrayado</u>
    <font size="5">Texto subrayado</u>
    
    


Select <select>

    <body>

        <select>
            <option value="Fiat">Fiat</option>
            <option value="Renault">Renault</option>
            <option value="Volkswagen">Volkswagen</option>
            <option value="Audi">Audi</option>
        </select>
  
    </body>