Advertisement
claudiospik3

Curso HTML básico

Nov 30th, 2012
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title> acá un título</title>
  4. </head>
  5. <body>
  6. <center>
  7. <a href="https://twitter.com/Claudiospik3" class="twitter-follow-button" data-show-count="false" data-lang="es">Sigueme @Claudiospik3</a>
  8.  
  9.  
  10. <style type="text/css">
  11. body
  12. {
  13. background-color: #FFFFFF;
  14. background-image: url(http://i.imgur.com/XTvEd.gif);
  15. color: #000000;
  16. }
  17. </style>
  18. <style type="text/css">
  19. a
  20. {
  21. color: #C8D7EB;
  22. outline: none;
  23. text-decoration: underline;
  24. }
  25. a:visited
  26. {
  27. color: #C8D7EB;
  28. }
  29. a:active
  30. {
  31. color: #C8D7EB;
  32. }
  33. a:hover
  34. {
  35. color: #376BAD;
  36. text-decoration: underline;
  37. }
  38. </style>
  39. <font face='Lucida Sans' color='GREEN' new size='4'>
  40. <h1> H1 es el tipo de letra más grande, y así en asendencia hasta h5</h1><br>
  41. <font face='Lucida Sans' color='blue' new size='4'>
  42. <h2> br es para hacer un salto de línea </h2>
  43. <font face='Lucida Sans' color='red' new size='4'>
  44. <h1><marquee> marquee se utiliza para mover un texto o imagen</marquee></h1>
  45. <font face='Lucida Sans' color='green' new size='4'>
  46. <strong> strong se utiliza para hacer en negritas algo </strong>
  47. <p>
  48. <font face='Lucida Sans' color='yellow' new size='4'>
  49. < p > se utiliza para hacer salto de párrafo
  50. </p>
  51. <br>
  52. <br>
  53. <font face='Lucida Sans' color='orange' new size='4'>
  54. < font face='Lucida Sans' color='GREEN' new size='4' > eso sirve para cambiar el color y tipo de fuente de la letra.<br><br>
  55.  
  56.  
  57. Para poner un vínculo, como por ejemplo a twitter: < a href="https://twitter.com/Claudiospik3" class="twitter-follow-button" data-show-count="false" data-lang="es">@Claudiospik3< /a >
  58.  
  59. Y para poner por ejemplo una imagen se utiliza: < img src="Acá un link de una imagen" alt="acá un texto" width="512" height="374">
  60.  
  61. <font face='Lucida Sans' color='yellow' new size='4'>
  62. <h2>En síntesis, casi todas las 'etiquetas' se cierran < head> que significa cabeza se cierra con < /head><br>
  63. < body > se cierra con < /body ><br>
  64. < h1 > con < /h1><br>
  65. < br > no se cierra
  66. < img tampoco se cierra
  67. < marquee > si se cierra, con < /marquee ><br>
  68. < p > se cierra con < /p >
  69. </h2>
  70.  
  71.  
  72. La index se cierra así<br>
  73. < / body >
  74. < / html >
  75. <font face='Lucida Sans' color='GREEN' new size='4'>
  76. <br>
  77.  
  78. Para poner música se pone:
  79.  
  80. <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_mini.swf" width="0" height="0">
  81. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_mini.swf" />
  82. <param name="bgcolor" value="#FFFFFF" />
  83. <param name="FlashVars" value="acá el url del audio&amp;autoplay=1" />
  84. </object>
  85.  
  86. Para poner un background se pone así, en la parte que dice background ( ponen un link de una imagen )
  87. < style type="text/css" >
  88. body
  89. {
  90. background-color: #FFFFFF;
  91. background-image: url( acá un link de una imagen);
  92. color: #000000;
  93. }
  94. < /style >
  95. < style type="text/css" >
  96. a
  97. {
  98. color: #C8D7EB;
  99. outline: none;
  100. text-decoration: underline;
  101. }
  102. a:visited
  103. {
  104. color: #C8D7EB;
  105. }
  106. a:active
  107. {
  108. color: #C8D7EB;
  109. }
  110. a:hover
  111. {
  112. color: #376BAD;
  113. text-decoration: underline;
  114. }
  115. < /style >
  116. <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_mini.swf" width="0" height="0">
  117. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_mini.swf" />
  118. <param name="bgcolor" value="#FFFFFF" />
  119. <param name="FlashVars" value="mp3=http://www.fileden.com/files/2012/10/14/3357191/Molotov%20-%20Gimme%20Tha%20Power.mp3&amp;autoplay=1" />
  120. </object>
  121.  
  122. <br>
  123. <font face='Lucida Sans' color='yellow' new size='4'>
  124. <br>
  125. <br>
  126. <br>
  127. </body>
  128. <html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement