Advertisement
Guest User

Untitled

a guest
Sep 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <style>
  6.         #lewy
  7.         {
  8.             width: 50%;
  9.             float: left;
  10.             height: 300px;
  11.         }
  12.        
  13.         #prawy
  14.         {
  15.             width: 50%;
  16.             float: left;
  17.             background-color: red;
  18.             height: 300px;
  19.         }
  20.        
  21.         .klasa
  22.         {
  23.             font-weight: bold;
  24.         }
  25.     </style>
  26.    
  27.    
  28. </head>
  29. <body>
  30.     <div id="lewy">s</div>
  31.     <div id="prawy">s</div>
  32.     <script>
  33.         document.getElementById("lewy").innerHTML = "Konrad";
  34.         document.getElementById("lewy").className = "klasa";
  35.     </script>
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement