Web accessibility service pageWeb accessibility service page

13.5:H213004 Give each page a title.

Improper design

Below 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>
          

Proper demonstration

Use 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 Main Content