diff --git a/slider.css b/slider.css
new file mode 100644
index 0000000..4a82c59
--- /dev/null
+++ b/slider.css
@@ -0,0 +1,17 @@
+.container-fluid{
+ border: 1px solid black;
+ height: 100vh;
+}
+
+.slide,.carousel-inner,.slide-image{
+ height: 100%;
+}
+
+.slide-image img{
+ height: 100%;
+ object-fit: cover;
+}
+
+.col{
+ height: 98vh;
+}
\ No newline at end of file
diff --git a/slider.html b/slider.html
new file mode 100644
index 0000000..576a024
--- /dev/null
+++ b/slider.html
@@ -0,0 +1,41 @@
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
diff --git a/time table/timetable.css b/time table/timetable.css
new file mode 100644
index 0000000..037837b
--- /dev/null
+++ b/time table/timetable.css
@@ -0,0 +1,51 @@
+body {
+ font-family: Arial, sans-serif;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ height: 100vh;
+ background-color: #f5f5f5;
+ margin: 0;
+}
+
+h1 {
+ margin-top: 20px;
+ font-size: 24px;
+ font-weight: bold;
+ color: #333;
+ text-decoration: underline; /* Adds an underline */
+}
+
+.timetable-container {
+ width: 60%;
+ margin: 20px auto;
+ border-collapse: collapse;
+ text-align: center;
+ background-color: #ffffff;
+ border: 3px solid black; /* Black border around the table */
+ border-radius: 5px;
+}
+
+.timetable-container th, .timetable-container td {
+ border: 1px solid black; /* Black border for table cells */
+ padding: 15px;
+}
+
+.timetable-container th {
+ background-color: #f0f0f0;
+ font-weight: bold;
+}
+
+.header {
+ text-transform: uppercase;
+}
+
+.hours {
+ text-transform: capitalize;
+ font-weight: bold;
+}
+
+.timetable-container .lunch {
+ background-color: #e0e0e0;
+ font-weight: bold;
+}
diff --git a/time table/timetable.html b/time table/timetable.html
new file mode 100644
index 0000000..69c8dfe
--- /dev/null
+++ b/time table/timetable.html
@@ -0,0 +1,61 @@
+
+
+
+
+
+ Timetable
+
+
+
+ Time Table
+
+
+