(i) Non-aligned tags in the HTML4.01:
Comment Label:<!--annotation Content-->
Strictly speaking, not HTML tags: <! Doctype> Document Declaration label
Set the:<meta> label for page meta information
Set the:<base> label for the relative directory of all links in the Web page (such as the root directory)
Line Wrap:<br>
Horizontal line:
Image:
Table cell Element <input>
A:<col> label that defines the properties of one or more columns in a tabular table
Defines the:<frame> label for a window of a frame
:<link> Link label that defines the relationship between a document and an external resource
"Query W3school income"
(ii) document.write ()
1, this method belongs to level 0 Don's part. Calling the method creates a new output stream with the contents as the parameter;
2, when called at the top of the script element, that is, when called outside the Window.onload event handle or the defer function, the method outputs the content when the parser resolves to it. The previous document will not be overwritten at this time.
3, when invoked in the Window.onload event handle or in the defer function, the output of the method overwrites the current document stream. This overwrites the previous document.
4. When the method is called continuously, the output is in the same output stream. When the output stream Document.close () is closed before the method is invoked, the method overwrites the document flow before it is closed. The Document.open () method creates a new output stream that overwrites the previous document stream.