First Mini Project

Using Html

Table of contents

No heading

No headings in the article.

I have developed a project using Html.This is my first mini project.The overall experience is awesome.I faced a lot of problems but I solved it.

Hereis my first mini project code :-

  1. <!DOCTYPE html>

  2. <html lang="en">

  3. <head>

  4. <meta charset="UTF-8">

  5. <title>Time Table|Mini project</title>

  6. </head>

  7. <body>

  8. <strong><u><h1>PW Skills Time Table</h1></u></strong>

  9. <table border cell padding="20px">

  10. <!-- Time Table of the school -->

  11. <thead>

  12. <tr>

  13. <th colspan="16px">Time Table</th>

  14. </tr>

  15. <tr>

  16. <th>Day/Lecture</th>

  17. <th> 1<br> 9:00-9.30</th>

  18. <th> 2<br> 9:30-10:00</th>

  19. <th> 3<br> 10:00-10:30</th>

  20. <th> 4<br> 10:30-11:00</th>

  21. <th> 5<br> 11:00-11:30</th>

  22. <th> 6<br> 11:30-12:00</th>

  23. <th>7 <br>12:00:12:30</th>

  24. </tr>

  25. <!-- monday -->

  26. <tr>

  27. <th>Mon</th>

  28. <th>Eng</th>

  29. <th>Math</th>

  30. <th>Science</th>

  31. <th rowspan="5">Lunch</th>

  32. <th >Gk</th>

  33. <th>Sst</th>

  34. <th>Game</th>

  35. </tr>

  36. <!-- tuesday -->

  37. <tr>

  38. <th>Tues</th>

  39. <th>Eng</th>

  40. <th>Hindi</th>

  41. <th>Sanskrit</th>

  42. <th>Science</th>

  43. <th>GK</th>

  44. <th>Sst</th>

  45. </tr>

  46. <!-- wednesday -->

  47. <tr>

  48. <th>Wed</th>

  49. <th>Eng</th>

  50. <th>Math</th>

  51. <th>Science</th>

  52. <th>Game</th>

  53. <th>Hindi</th>

  54. <th>GK</th>

  55. </tr>

  56. <!-- thursday -->

  57. <tr>

  58. <th>Thurs</th>

  59. <th>Eng</th>

  60. <th>Math</th>

  61. <th>Hindi</th>

  62. <th>Game</th>

  63. <th>Science</th>

  64. <th>Sanskrit</th>

  65. </tr>

  66. <!-- friday -->

  67. <tr>

  68. <th>Fri</th>

  69. <th>Eng</th>

  70. <th>Hindi</th>

  71. <th>Math</th>

  72. <th>Game</th>

  73. <th>English</th>

  74. <th>Science</th>

  75. </tr>

  76. <!-- saturday -->

  77. <tr>

  78. <th>Sat</th>

  79. <th>Eng</th>

  80. <th>Hindi</th>

  81. <th>Science</th>

  82. <th colspan="5">No Lecture</th>

  83. </tr>

  84. </thead>

  85. </table>

  86. </body>

  87. </html>