![]() ![]() |
13.5:H213004 Give each page a title.Improper designBelow is an example of improper design where no title was given for the Webpage, so nothing was recorded on the top left hand side of the browser. Improper design: <HEAD> <META http-equiv="Content-Type" content="text/html; charset=big5"> </HEAD> End of example Proper demonstrationUse TITLE label to set title for the Webpage, so that the title is recorded on the top left hand side of the browser. Proper example: <HEAD> <TITLE>Web accessibility development team</TITLE> <META http-equiv="Content-Type" content="text/html; charset=big5"> </HEAD> End of example |
![]() |