Advertisement
Guest User

Untitled

a guest
Oct 6th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. <?php
  2. $Time_Availability = array("8:30 - 9:00", "11:30 - 12:00", "1:00 - 1:30", "1:30 - 2:00", "2:00 - 2:30", "3:30 - 4:00", "4:00 - 4:30", "4:30 - 5:00");
  3. $Time_Availability2 = array("9:00 - 9:30", "9:00 - 11:30", "10:00 - 11:00", "2:30 - 3:00", "2:30 - 3:30");
  4.  
  5. $Lunch = "12:00 - 1:00";
  6. list($a, $b, $c, $d, $e, $f, $g, $h) = $Time_Availability;
  7. list($i, $j, $k, $l, $m) = $Time_Availability2;
  8. //echo "I have several animals, a $a, $b, $c, $d, $e, $f, $g, $h, $i, $j.";
  9. ?>
  10.  
  11. <!doctype html>
  12. <html>
  13. <head>
  14. <link rel="stylesheet" type="text/css" href="main.css">
  15. <meta charset="utf-8">
  16. <title>TruHearing Development Hours | Team Availability</title>
  17. </head>
  18.  
  19. <body>
  20.  
  21. <div id="pagewrap">
  22.  
  23. <header>
  24.  
  25. <h1 align="center">TruHearing Development Hours | Team Availability</h1>
  26. </header>
  27. <!-- Morning Schedule -->
  28. <section id="content">
  29. <h2 align="center">Morning</h2><hr>
  30. <h3 align="center"><?php echo "Team Availability" ?></h3>
  31. <p align="center"><?php echo "$i <br> $j <br> $k" ?></p><br><br><br>
  32. </section>
  33.  
  34.  
  35. <!-- Lunch Schedule -->
  36. <section id="middle">
  37. <h2 align="center">Lunch</h2><hr>
  38. <h3 align="center"><?php echo $Lunch ?></h3>
  39. <p align="middle">No interviews during this time.</p>
  40. <br><br><br><br><br>
  41. </section>
  42.  
  43.  
  44. <!-- AFternoon Schedule -->
  45. <aside id="sidebar">
  46. <h2 align="center">Afternoon</h2><hr>
  47. <h3 align="center"><?php echo "Team Availability" ?></h3>
  48. <p align="center"><?php echo "$l <br> $m <br><br><br><br><br>" ?></p>
  49. </aside>
  50.  
  51.  
  52. <!-- Instructions/Disclaimer Schedule -->
  53. <footer>
  54. <h2 align="center">Information</h2>
  55. <p align="left">• TruHearing development hours are <strong>8:30-5:00</strong><br> • Lunch from <strong>12:00-1:00</strong> <br>• 6 engineers on our team have appointments at <strong>9:00-9:30, 9:00-11:30, 10:00-11:00, 2:30-3:00, 2:30-3:30.</strong></p>
  56. <hr><br>
  57. <div id="footer" align="center"> © 2016 |&nbsp;www.truhearing.com | All Rights Reserved. | Created by TruHearing Web Developer Candidate: <strong>Halley Kronick</strong></div>
  58. <br>
  59. </footer>
  60.  
  61. </div>
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement