Saturday, February 25, 2012

HMTL - link / Attributes

<html>

     <head>
        <title> Attributes </title>
     </head>

     <body>

        <p style="background-color:#00688B;">Line Attributes</p>
        <p>Background-color</p>
        <body style="background-color:#6CA6CD;">
        <hr/>
        <p>Links</p>
        <a href="http://www.youtube.com/">Click here go to Youtube</a><br/>
        <a href="http://www.ufpa.br/dicas/htm/htm-cor2.htm">Click here go to Table Colors HTML</a><br/>

        <p><a href="#intro">Link to Introduction</a></p>
        <p><a href="#text">Link to Text</a></p>
        <hr/>

        <p>Images</p>
        <img src="http://3.bp.blogspot.com/-DqQBD6_9oKk/TZTTMsit--I/AAAAAAAAAC8/GDa8OGEeWLU/s1600/ciencia_da_computacao_c2.gif"/>
        <img src="http://3.bp.blogspot.com/-DqQBD6_9oKk/TZTTMsit--I/AAAAAAAAAC8/GDa8OGEeWLU/s1600/ciencia_da_computacao_c2.gif" width="250px" height="250px" />
        <p>Gifs</p>
        <img src="http://www.reinodosgifs.net/galeriadegifs/emoticons_msn/06.gif"/>
     
        <h1 id="intro">Introduction</h1>
        <p>Text text text text</p>

        <h1 id="text">Text</h1>
        <p>Text text text text</p>

    </body>

</html>

will look like this in the browser:


Line Attributes
Background-color

Links
Click here go to Youtube
Click here go to Table Colors HTML
Link to Introduction
Link to Text

Images

 Gifs

Introduction

Text text text text

Text

Text text text text

0 comentários:

Post a Comment