Advertisement
alexappelt

Untitled

Jul 16th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Elementos Flutuantes</title>
  5.     <meta charset="utf-8">
  6.     <style type="text/css">
  7.        
  8. .borda{
  9.     border: 1px solid pink;
  10.     display: inline;
  11.     background: red;
  12.     color:white;
  13.     font: bold 33px "impact", fantasy;
  14. }
  15. .borda2{
  16.     border: 1px solid red;
  17.     display: inline;
  18.     color:red;
  19.     background: white;
  20.     font: bold 44px "Verdana", sans-serif;
  21. }
  22.  
  23. #back{
  24.     background-color: black;
  25. }
  26.        
  27. .clear{
  28.     clear: both;
  29. }      
  30.        
  31.     </style>
  32. </head>
  33. <body id="back">
  34.  
  35.  
  36. <div>
  37. <h1 class="borda">Te amo</h1>
  38. <h1 class="borda2">Milena <3</h1>
  39.  
  40. </div>
  41.  
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement