10 lines
180 B
HTML
10 lines
180 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
html { display: table; }
|
|
body { overflow: scroll; }
|
|
</style>
|
|
<script>
|
|
onload = function() {
|
|
document.body.style.display = 'inline';
|
|
}
|
|
</script>
|