Time-Table||Learning Web Development||HTML
In this post, I want to share a small HTML project that I created using the basic knowledge of web development taught to me in the starting 3 weeks of my college journey – " the timetable of my class ". This project helped me practice basic HTML tags and understand how to organise information clearly on a web page. As a student, it boosted my confidence in web development and gave me a chance to apply my theoretical knowledge in practical. It gave me a chance to apply what I am learning in web development in a real, useful way. To build the timetable, I started with a basic HTML file structure with the head and body sections. Inside the body, I used the table tag along with thead, tbody, tr, th and td tag to arrange days, time, and subjects in rows and columns. I also used attributes such as width, height, cellspacing, cellpadding, bgcolor and other attributes. I used simple styling to make the table easier to read. By creating this timetable, I improved my under...