SherinKR

button.php

Oct 15th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <?php
  2. echo "<html>";
  3. echo "<head>";
  4. echo "<style>";
  5. echo ".button {
  6. background-color: #4CAF50; /* Green */
  7. border: none;
  8. color: white;
  9. width: 150px;
  10. padding: 15px 32px;
  11. text-align: center;
  12. text-decoration: none;
  13. display: inline-block;
  14. font-size: 20px;
  15. margin: 4px 2px;
  16. cursor: pointer;
  17.  
  18. }
  19.  
  20.  
  21. .button1 {background-color: #f44336;} /* Red */
  22.  
  23. </style>
  24. </head>
  25. <body>";
  26.  
  27. echo "<button class='button'>Green</button>";
  28. echo "<button class='button button1'>Red</button>";
  29.  
  30.  
  31. echo "</body>";
  32. echo "</html>";
  33. ?>
Add Comment
Please, Sign In to add comment