페이지 제목은 HTML 코드의 <title>에서 가져온 페이지의 제목입니다. 예를 들어 웹사이트에 다음 코드가 있는 경우 '페이지 제목' 측정기준의 값은 'MyWebsite'입니다.
<!DOCTYPE html>
<html lang="en">
<head>
<title>MyWebsite</title>
</head>
<body>
<p>Hello, World!</p>
</body>
</html>