Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head><meta http-equiv="Content-Type" content="text/html; charset=gb18030">
  4.  
  5. <title>Administracion de Sedes</title>
  6. <?php
  7. foreach($css_files as $file): ?>
  8. <link type="text/css" rel="stylesheet" href="<?php echo $file; ?>" />
  9. <?php endforeach; ?>
  10. <?php foreach($js_files as $file): ?>
  11. <script src="<?php echo $file; ?>"></script>
  12. <?php endforeach; ?>
  13. <style type='text/css'>
  14. body
  15. {
  16. font-family: Arial;
  17. font-size: 14px;
  18. }
  19. a {
  20. color: blue;
  21. text-decoration: none;
  22. font-size: 15px;
  23. }
  24. a:hover
  25. {
  26. text-decoration: underline;
  27. color: #C00;
  28. }
  29.  
  30. h1 {
  31. font-weight: bold;
  32. font-family: "Courier New", Courier, monospace;
  33. text-align: center;
  34. font-size: 24px;
  35. color: #C00;
  36. }
  37.  
  38. </style>
  39. </head>
  40. <body>
  41.  
  42.  
  43.  
  44. <h1>Administración de Sedes</h1>
  45. <div>
  46. <?php echo $output; ?>
  47. </div>
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement