Recommanded Free YOUTUBE Lecture: <% selectedImage[1] %>

HTML 문서의 Title은 읽기 전용이지만 JavaScript를 이용하면, 값을 바꿀 수 있다.
<html>
<head>
</head>
<body>
</body>
</html>

<script language="JavaScript"><!--
document.write('<title>This is my title<\/title>')
//--></script>
Explorer 5.x 이상에서는 다음과 같은 코드도 사용할 수 있다.
document.title = "This is my title";