1. Create a HTML file with all the topics that are discussed in the class.
2. Create an HTML file that includes a title, heading, paragraph, and an image.
3. Create an HTML page with an ordered (numbered) list and an unordered (bulleted) list.
* For unordered list we use <ul>
tag for ordered list we use <ol>
4. Create a webpage with at least three hyperlinks to different websites. Make one of them open in a new tab.
* You have to use an attribute target="blank"
to make this happen.
5. Create an HTML table with three rows and three columns. Fill in some data (e.g., names and ages) for each cell.
6. Create an HTML form with fields for name, email, and a textarea for comments. Include a submit button.
7. Create a list of your favorite books or movies using an unordered list (<ul>
) and include brief descriptions(<p>
) for each.
8. Build a simple navigation menu for a website with links to Home, About Us, Services, and Contact Us pages.