<!DOCTYPE html>
<html>
<head><title>console test</title></head>
<body>
<h1>Console Test</h1>
<script>
console.log('page loaded');
console.warn('deprecation warning');
console.error('something broke');
console.info('version 1.0');
console.debug('init complete');
</script>
</body>
</html>