다음 코드를 실행하여 작성자가 최상의 사용자 경험을 위해 브라우저에 힌트를 제공할 수 있도록 미리 로드 속성을 구현하는 방법을 배울 수 있습니다.
예시
<!DOCTYPE HTML> <html> <body> <video width="300" height = "200" preload = "none" controls> <source src = "/html5/foo.ogg" type = "video/ogg" /> <source src = "/html5/foo.mp4" type = "video/mp4" /> Your browser does not support the video element. </video> </body> </html>