Untitled
unknown
plain_text
2 years ago
1.2 kB
3
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Weekly Timetable</title>
<style>
body {
background-image: url('mushroom_background.jpg'); /* Replace with your image file */
background-size: cover;
font-family: Arial, sans-serif;
color: white;
padding: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid white;
padding: 10px;
text-align: center;
}
th {
background-color: rgba(0, 0, 0, 0.5);
}
td {
background-color: rgba(0, 0, 0, 0.3);
}
</style>
</head>
<body>
<h1>Weekly Timetable</h1>
<table>
<tr>
<th>Day</th>
<th>8 am - 4 pm</th>
<th>4 pm - 5 pm</th>
<th>5 pm - 9 pm</th>
<th>9 pm - 10 pm</th>
<th>10 pm - 11 pm</th>
</tr>
<tr>
<td>Monday</td>
<td>School</td>
<td>Homework</td>
<td>Free time</td>
<td>Guitar practice</td>
<td>Study</td>
</tr>
<tr>
<!-- Repeat similar rows for each day -->
</tr>
</table>
</body>
</html>
Editor is loading...
Leave a Comment