Advertisement
Jvsierra

Untitled

Sep 3rd, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>
  6. Exemplo - Imagens
  7. </title>
  8.  
  9. <style type="text/css">
  10. .alinha{margin:0 auto; display: block;
  11. width: 550px;
  12. }
  13. .vertical {vertical-align:top;}
  14. *{font-size:30px;font-family: Verdana;}
  15. .alinha1{text-align: center;}
  16. .transp{position: absolute;
  17. top:690px;
  18. left:250px;
  19. opacity: 0.8;}
  20. .fundo
  21. {
  22. background-image: url("css.jpg");
  23. /*repeat, repeat-x, repeat-y, no-repeat*/
  24. background-repeat: repeat-y;
  25. background-position: right;
  26. /*center, left, right ou (x, y)*/
  27. background-attachment: fixed;
  28. }
  29. </style>
  30. </head>
  31. <body class="fundo">
  32. <div class="alinha">
  33. <img src="html.jpg" class="vertical" alt="Texto Alternativo" title="HTML & CSS" />HTML
  34.  
  35. </div>
  36. <figure class="alinha1">
  37. <figcaption>Figura <mark>1</mark></figcaption>
  38. <img src="html.jpg" alt="HTML" />
  39. </figure>
  40. <img class="transp" src="htmlw.jpg" alt="HTML" />
  41. <p class="alinha">
  42. Testando HTML e Testando HTML E CSS<br />
  43. Testando HTML e Testando HTML E CSS<br />
  44. Testando HTML e Testando HTML E CSS<br />
  45. Testando HTML e Testando HTML E CSS<br />
  46. Testando HTML e Testando HTML E CSS<br />
  47. Testando HTML e Testando HTML E CSS<br />
  48. </p>
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement