Efeitos

Alguns efeitos para se fazer na página web:

Clicar na imagem e ampliá-la:

<!–Início —>
<img src=”URL DA IMG” width=”180″ height=”100″ name=”myImage”
onclick=”javascript:myImage.height=300;myImage.width=250″
ondblclick=”javascript:myImage.width=180;myImage.height=100″>
<!–Fim —>

Carregar um .pdf na página web:

<!doctype html public "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>iframe</title>
</head>
<body>
<h2>shown below is a pdf form in an iframe</h2>
<iframe style="border:1px solid #000;" name="iframe" src="pdf/VoterRegistrationForm.pdf" width="800"  height="600" frameborder="0">
non-compatible browsers will see this text
</iframe>
</body>
</html>
<!doctype html public "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>iframe</title> </head> <body> <h2>shown below is a pdf form in an iframe</h2> <iframe style="border:1px solid #000;" name="iframe" src="pdf/VoterRegistrationForm.pdf" width="800"  height="600" frameborder="0"> non-compatible browsers will see this text </iframe> </body> </html>

Mais efeitos em:

http://www.forum.clickgratis.com.br/mentehacker/t-102-previous.html

Inserir pdf na página html

Substituir o XXXendereçoXXX pelo endereço do documento na web.

<!doctype html public "-//W3C//DTD HTML 3.2 Final//EN"><html>
<head>
  <title>iframe</title>
</head>
 <body>
   <h2>shown below is a pdf form in an iframe</h2>
      <iframe style="border:1px solid #000;" name="iframe"   src="pdf/VoterRegistrationForm.pdf" width="800"    height="600" frameborder="0">       non-compatible browsers will see this text
      </iframe>
 </body>
</html>

 

RGB to Color Name Mapping (Triplet and Hex)

 

http://web.njit.edu/~kevin/rgb.txt.html

No comments yet.