Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.29 KB | None | 0 0
  1. <!DOCTYPE html> <html> <head> <style> body { counter-reset: section; } h3 { counter-reset: subsection; } h3::before { counter-increment: section; content: "Period " counter(section) ": "; } .dropbtn { background-color: #4CAF50; color: white; padding: 16px; font-size: 16px; border: none; cursor: pointer; } .dropdown { position: relative; display: inline-block; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); z-index: 1; } .dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block; } .dropdown-content a:hover {background-color: #f1f1f1} .dropdown:hover .dropdown-content { display: block; } .dropdown:hover .dropbtn { background-color: #3e8e41; } /* unvisited link */ a:link { color: deepskyblue; } /* visited link */ a:visited { color: deepskyblue; } /* mouse over link */ a:hover { color: blue; } /* selected link */ a:active { color: darkblue; } table { font-family: arial, sans-serif; border-collapse: collapse; width: 100%; } td, th { border: 1px solid #000000; text-align: center; padding: 8px; } tr:nth-child(even) { background-color: #dddddd; } tr:nth-child(odd) { background-color: #dddddd; } </style> <body style="background-color:lightgray;"> <style> div.a { text-align: center; } div.b { text-align: justify; } /* mouse over link */ td:hover { color: deepskyblue; } </style> </head> <body> <div class="a"> <h1 style="font-size:50px;"><u>My School Schedule</u></h1> <div class="b"> <table> <tr> <th></th> <th>A-Day</th> <th>B-Day</th> <th>C-Day</th> <th>D-Day</th> <th>E-Day</th> </tr> <tr> <td><h3><b></b></h3><b>8:00-8:50</b></td> <td rowspan="2"><a href="https://www.w3schools.com/html" class="dropdown">Technology</a><br><b>Saha</b><br><i>300<br></i><div class="dropdown"> <button class="dropbtn">Dropdown</button> <div class="dropdown-content"> <a href="https://www.w3schools.com/html">W3Schools.com</a> <a href="https://validator.w3.org/">W3Validator</a> <a href="https://www.classroom.google.com">Google Classroom</a></td> <td>Algebra II/Trigonometry<br><b>Mun</b><br><i>404</i></td> <td>English<br><b>Gallo</b><br><i>300</i></td> <td rowspan="2"><a href="https://www.w3schools.com/html">Technology</a><br><b>Saha</b><br><i>300</i><br><div class="dropdown"> <button class="dropbtn">Dropdown</button> <div class="dropdown-content"> <a href="https://www.w3schools.com/html">W3Schools.com</a> <a href="https://validator.w3.org/">W3Validator</a> <a href="https://www.classroom.google.com">Google Classroom</a></td> <td><a href="https://en.wikipedia.org/wiki/Exercise">Phys Ed</a><br><b>MacDonald</b><br><i>202</i></td> </tr> <tr> <td><b><h3><b></b></h3>8:55-9:45</b></td> <td><a href="https://en.wikipedia.org/wiki/Exercise">Phys Ed</a><br><b>MacDonald</b><br><i>202</i></td> <td>Physics<br><b>Helfenbein</b><br><i>310</i></td> <td>Physics<br><b>Helfenbein</b><br><i>310</i></td> </tr> <tr> <td><h3><b></b></h3><b>9:50-10:40</b></td> <td>English<br><b>Gallo</b><br><i>300</i></td> <td>Global History<br><b>Caccamo</b><br><i>302</i></td> <td>Algebra II/Trigonometry<br><b>Mun</b><br><i>404</i></td> <td>English<br><b>Gallo</b><br><i>300</i></td> <td>Algebra II/Trigonometry<br><b>Mun</b><br><i>404</i></td> </tr> <tr> <td><h3><b></b></h3><b>10:45-11:35</b></td> <td>Spanish<br><b>Giraldo</b><br><i>203</i></td> <td>Physics<br><b>Helfenbein</b><br><i>310</i></td> <td>Health<br><b>Nikkolos</b><br><i>409</i></td> <td>Physics<br><b>Helfenbein</b><br><i>310</i></td> <td>Spanish<br><b>Giraldo</b><br><i>203</i></td> </tr> <tr> <td><h3><b></b></h3><b>11:40-12:30</b></td> <td colspan="5"><a href="https://en.wikipedia.org/wiki/Lunch">Lunch</a><br><i>Lunchroom</i></td> </tr> <tr> <td><h3><b></b></h3><b>12:35-1:25</b></td> <td>Algebra II/Trigonometry<br><b>Mun</b><br><i>404</i></td> <td>Spanish<br><b>Giraldo</b><br><i>203</i></td> <td>Global History<br><b>Caccamo</b><br><i>304</i></td> <td>Global History<br><b>Caccamo</b><br><i>304</i></td> <td>Global History<br><b>Caccamo</b><br><i>303</i></td> </tr> <tr> <td><h3><b></b></h3><b>1:30-2:20</b></td> <td>Physics<br><b>Helfenbein</b><br><i>310</i></td> <td>English<br><b>Gallo</b><br><i>300</i></td> <td>Spanish<br><b>Giraldo</b><br><i>203</i></td> <td>Algebra II/Trigonometry<br><b>Mun</b><br><i>404</i></td> <td>Health<br><b>Nikkolos</b><br><i>409</i></td> </tr> </table> </body> </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement