Lab01
Lab01
(503073)
LAB 1
tables, lists, forms, etc. Inline-CSS code can also be used in these exercises in order to improve the look
1. ABOUT PAGE
The images should be responsive: their size will be increased automatically when we increase
2. LOGIN FORM
using HTTP POST method. The server expects to receive an x-www-form-urlencoded body
Requirements:
4. If a valid email address is not entered, the form should not be submitted (HTML5 feature).
5. Try to fix all the error messages outputted by the server until you get this success message.
3. HTML TABLE
Requirements:
1. All text contents are center aligned in every cell, both vertically and horizontally.
Hints:
1. Use the <table> tag for the entire table. Inside it are <tr> tags with each tag representing a
table row. Each <tr> tag contains a list of <td> tags that represent table cells.
2. Use the rowspan attribute on the <td> tag to combine cells between different rows into one
large cell. Similarly, use the colspan attribute on the <td> tag to combine cells from different
columns into one large cell. These two properties can be used at the same time to create a
4. REGISTER FORM
Requirements:
using HTML POST method. The server expects to receive an x-www-form-urlencoded body
containing the following keys: name, email, birthday, birthtime, gender, country, favorite_ide, toeic,
message.
- For toeic field: the maximum value is 990, minimum value is 5 and each step would increase
- Try to fix all the error messages outputted by server until you get a result similar to this
screen:
HOMEWORK
Exercise 5. Build a simple website utilizing HTML following the structure depicted in the provided
ex5.jpg image. The website should exclusively employ basic HTML tags, including headings, links,
tables, images, and paragraphs. For the image, you can utilize the following URL:
https://via.placeholder.com/600x300.
Exercise 6. Create a simple HTML website that enables users to play an MP3 song and an MP4 video.
You have the flexibility to choose any MP3 or MP4 file for this purpose.
Exercise 5 Exercise 6