Page 1: Home Page (Title: "My Learning Space")
This page will have a profile picture, name, class,
section, hobbies, and credentials. There will also be a
link to another page: "Know my class timetable"
<html>
<head>
<title>My Learning Space</title>
</head>
<body bgcolor="pink">
<h1><center>Welcome to My Learning Space</h1>
<center><img src="profilepic.jpg" alt="My Profile Picture"
width="200" height="200"></center>
<h2>Name: Sharanya Nandi</h2>
<h4>
<p>Class: VII</p>
<p>Section: A</p>
<p>Hobbies: Reading, Recitation, Playing Basketball</p>
<p>Credentials: Top scorer in Science quiz</p>
</h4>
<h3><i><u>Explore:</h3>
<ul>
<li><a href="timetable.html"> Know my class timetable</a></li>
</ul>
</body>
</html>
Page 2: Timetable (Title: "My Class Timetable")
This page will display the class timetable.
<html>
<head>
<title>My Class Timetable</title>
</head>
<body bgcolor="cyan">
<h1><center>Class Timetable</h1></center>
<center><table border="5" width="75%" height="50%">
<tr>
<th>Day</th>
<th>First period</th>
<th>Second period</th>
<th>Third period</th>
<th>Fourth period</th>
<th>Fifth period</th>
<th>Sixth period</th>
<th>Seventh period</th>
<th>Eighth period</th>
</tr>
<tr>
<th>Monday</th>
<td>Maths</td>
<td>Geography</td>
<td>Computer</td>
<td>Maths</td>
<td>Life science</td>
<td>History</td>
<td>Library</td>
<td>English</td>
</tr>
<tr>
<th>Tuesday</th>
<td>Drawing</td>
<td>English</td>
<td>Life science</td>
<td>History</td>
<td>Maths</td>
<td>Third language</td>
<td>Physics</td>
<td>First language</td>
</tr>
<tr>
<th>Wednesday</th>
<td>English</td>
<td>Physics</td>
<td>Geography</td>
<td>EVS</td>
<td>Maths</td>
<td>First language</td>
<td>Third language</td>
<td>C.T.</td>
</tr>
<tr>
<th>Thursday</th>
<td>History</td>
<td>Computer</td>
<td>Physics</td>
<td>W.E.</td>
<td>G.K.</td>
<td>First language</td>
<td>English</td>
<td>First language</td>
</tr>
<tr>
<th>Friday</th>
<td>Maths</td>
<td>Physics</td>
<td>First language</td>
<td>English</td>
<td>First language</td>
<td>Geography</td>
<td>P.T.</td>
<td>Life science</td>
</tr>
</table></center>
<br>
<a href="homepage.html">Back to Home</a>
</body>
</html>