summaryrefslogtreecommitdiff
path: root/Lab02/index.html
diff options
context:
space:
mode:
authorSaumit Dinesan <justsaumit@protonmail.com>2023-08-17 11:15:53 +0530
committerSaumit Dinesan <justsaumit@protonmail.com>2023-08-17 11:15:53 +0530
commitfc248155864bb83177606b468c7e8eb8344eeba7 (patch)
treef7b0ab71afc1e314e2b8f7539e4d99424e3a242d /Lab02/index.html
parentdefb19e922bb09e52c495a9393f35479d48b1203 (diff)
Lab02: Create College Events website make use of HTML Tables
Diffstat (limited to 'Lab02/index.html')
-rw-r--r--Lab02/index.html113
1 files changed, 113 insertions, 0 deletions
diff --git a/Lab02/index.html b/Lab02/index.html
new file mode 100644
index 0000000..1abcef7
--- /dev/null
+++ b/Lab02/index.html
@@ -0,0 +1,113 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel="stylesheet" href="style.css">
+ <title>Using Tables</title>
+</head>
+<body>
+ <h1>College Events</h1>
+ <table id="table1">
+ <caption>
+ The following table showcases the Upcoming Events
+ </caption>
+ <thead>
+ <tr>
+ <th>Sr. No</th>
+ <th>Date</th>
+ <th>Event</th>
+ <th>Location</th>
+ <th>Time</th>
+ <th>Description</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>01.</td>
+ <td>August 09, 2023</td>
+ <td>Back to College Session</td>
+ <td>Auditorium</td>
+ <td>10AM IST</td>
+ <td>Meet teachers and learn about the upcoming college year</td>
+ </tr>
+ <tr>
+ <td>02.</td>
+ <td>August 16, 2023</td>
+ <td>Tech Adrishta 2023 Launch Event</td>
+ <td>Amphi Theatre</td>
+ <td>6PM IST</td>
+ <td>Join us for the exciting launch of our renowned tech event</td>
+ </tr>
+ <tr>
+ <td>03.</td>
+ <td>September 12, 2023</td>
+ <td>Fall Festival</td>
+ <td>Open Ground</td>
+ <td>6PM IST</td>
+ <td>Join us for games, food, and fun to celebrate the Fall Festival</td>
+ </tr>
+ <tr>
+ <td>04.</td>
+ <td>October 31, 2023</td>
+ <td>Halloween Costume Contest</td>
+ <td>Gymnasium</td>
+ <td>6PM IST</td>
+ <td>Show off your creative costumes and win prizes!</td>
+ </tr>
+ </tbody>
+ </table>
+ <br>
+ <br>
+ <table id="table2">
+ <caption>
+ The following table showcases the allocated budgets for Upcoming Events
+ </caption>
+ <thead>
+ <tr>
+ <th>Sr. No</th>
+ <th>Date</th>
+ <th>Event</th>
+ <th>Description</th>
+ <th>Budget (Rs)</th>
+ </tr>
+ <thead>
+ <tfoot>
+ <tr>
+ <td colspan="4">SUM</td>
+ <td> 13,000</td>
+ </tr>
+ </tfoot>
+ <tbody>
+ <tr>
+ <td>01.</td>
+ <td>August 09, 2023</td>
+ <td>Back to College Session</td>
+ <td>Meet teachers and learn about the upcoming college year</td>
+ <td>2,000</td>
+ </tr>
+ <tr>
+ <td>02.</td>
+ <td>August 16, 2023</td>
+ <td>Tech Adrishta Launch Event</td>
+ <td>Join us for games, food, and fun to celebrate the Fall Festival</td>
+ <td>2,000</td>
+ </tr>
+ <tr>
+ <td>03.</td>
+ <td>September 12, 2023</td>
+ <td>Fall Festival</td>
+ <td>Join us for games, food, and fun to celebrate the Fall Festival</td>
+ <td>4,000</td>
+ </tr>
+ <tr>
+ <td>04.</td>
+ <td>October 31, 2023</td>
+ <td>Halloween Costume Contest</td>
+ <td>Show off your creative costumes and win prizes!</td>
+ <td>5,000</td>
+ </tr>
+ </tbody>
+ </table>
+</body>
+</html> \ No newline at end of file