From 14a0c909e92098d835aad5a8b4c04afad0dc35c4 Mon Sep 17 00:00:00 2001 From: pulkitupadhay <122511271+pulkitupadhay@users.noreply.github.com> Date: Tue, 12 Nov 2024 11:15:25 +0530 Subject: [PATCH] Add files via upload --- Week1/index.html | 55 ++++++++++++++++++++++++++++++++++++++++++++++++ Week1/script.js | 0 Week1/style.css | 20 ++++++++++++++++++ 3 files changed, 75 insertions(+) create mode 100644 Week1/index.html create mode 100644 Week1/script.js create mode 100644 Week1/style.css 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