diff --git a/Week1/index.html b/Week1/index.html new file mode 100644 index 0000000..261c420 --- /dev/null +++ b/Week1/index.html @@ -0,0 +1,55 @@ + + + + + + Timetable + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Timetable
HoursMonTueWedThuFri
ScienceMathsScienceMathsArts
SocialHindiEnglishSocialSports
Lunch
ScienceMathsScienceMathsProject
SocialHindiEnglishSocial
+ + \ No newline at end of file diff --git a/Week1/script.js b/Week1/script.js new file mode 100644 index 0000000..e69de29 diff --git a/Week1/style.css b/Week1/style.css new file mode 100644 index 0000000..bcc2c14 --- /dev/null +++ b/Week1/style.css @@ -0,0 +1,20 @@ +table { + width: 100%; + border-collapse: collapse; + border: 3px double black; +} +th, td { + border: 3px double black; + text-align: center; + padding: 10px; +} +th { + background-color: #f2f2f2; +} +.lunch { + background-color: #f9f9f9; + font-weight: bold; +} +th:hover,td:hover{ + color: blue; +} \ No newline at end of file