Guest User

Untitled

a guest
Oct 16th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <?php
  4. $username = 'Evan';
  5. $user_type = 'teacher';
  6. $question_text = 'A ball is thrown vertically at 10 meters per second on the surface of Earth. What is the minimum time (in seconds) it could take to reach its maximum height?' ?>
  7.  
  8. <html>
  9. <style>
  10. .container {
  11.  
  12. background:white;
  13. float:center;
  14.  
  15. .top_bar {
  16. font-family:Ubuntu;
  17. font-size: 20px;
  18. border:1px solid blue;
  19.  
  20.  
  21. }
  22.  
  23. }
  24.  
  25. .top_bar #top_menu {
  26. font-family:Ubuntu;
  27. border:1px solid blue;
  28. border-radius:5px;
  29. color:black;
  30. background:#5E56D6;
  31.  
  32. }
  33.  
  34. .top_bar #top_menu li {
  35.  
  36. border-radius: 5px;
  37. background:#5E56D6;
  38. display:inline;
  39. color:black
  40. padding:20px;
  41. margin:20px;
  42. }
  43.  
  44.  
  45. .top_bar #top_menu li:hover {
  46.  
  47. background:#ABA7E3;
  48. }
  49.  
  50. .top_bar #welcome_msg {
  51. color:white;
  52. font-size:16px;
  53. }
  54.  
  55. .top_bar #welcome_msg:hover {
  56. background:#5E56D6;
  57. }
  58.  
  59. .display {
  60. border:1px solid blue;
  61. font-family:Ubuntu;
  62. font-size:16px;
  63.  
  64. </style>
  65. <head>
  66. <title>Physics Problem Database</title>
  67.  
  68. <link href="
  69. <?php echo URL::to_asset('/css/style.css'); ?>" rel="stylesheet" type="text/css" >
  70.  
  71. </head>
  72.  
  73.  
  74. <body>
  75. <div class = "container">
  76.  
  77. <div class = "top_bar">
  78.  
  79. <ul id = "top_menu">
  80. <span id = "welcome_msg"> Welcome <?php echo $username ?> !</span>
  81. <li>home</li>
  82.  
  83. <?php if($user_type=='student') {
  84. echo "<li> feedback</li>";}?>
  85. <?php if($user_type=='teacher') {
  86. echo "<li> results</li>";
  87. echo "<li> upload new</li>";}?>
  88. <li>problems</li>
  89. <li>about</li>
  90.  
  91.  
  92. </ul>
  93.  
  94.  
  95. </div>
  96.  
  97. <textarea class = "display" rows = "10" cols = "40">
  98. <?php echo $question_text;?>
  99. </textarea>
  100.  
  101. </div>
  102. </body>
  103.  
  104. </html>
Add Comment
Please, Sign In to add comment