Since there is very little content on a page, if you open it directly, the entire page feels very empty, so you need to use a web page dialog box to display only the part with content. Use format:
SCRIPTLANGUAGE=javascript>
<!--
window.open('page.html','newwindow','height=100,width=400,
top=0,left=0,toolbar=no,menubar=no,scrollbars=no,
resizable=no,location=no,status=no')//This sentence should be written as a line
-->
</SCRIPT>
'Article explanation:
'<SCRIPTLANGUAGE=javascript>js script starts;
window.open command to pop up a new window;
The file name of the 'page.html' pop-up window;
The name of the 'newwindow' pop-up window (not the file name), if not required, it can be replaced by empty '';
height=100 window height;
width=400 window width;
top=0 The pixel value of the window is above the screen;
left=0 The pixel value of the window from the left side of the screen;
toolbar=no Whether to display the toolbar, yes is the display;
menubar, scrollbars means menu bar and scrollbar.
resizable=no is allowed to change the window size, yes is allowed;
location=no whether to display the address bar, yes is allowed;
status=no displays information in the status bar (usually the file is already open), yes is allowed;
'</SCRIPT>js script ends