write using only html(no css)
Attachments:
![](https://hi-static.z-dn.net/files/d62/25e6f3e2ae2b922955ee9cb62776a2a8.jpg)
Answers
Answered by
2
Answer:
The write() method writes HTML expressions or JavaScript code to a document.
The write() method is mostly used for testing: If it is used after an HTML document is fully loaded, it will delete all existing HTML.
Note: When this method is not used for testing, it is often used to write some text to an output stream opened by the document.open() method. See "More Examples" below.
Tip: The document.writeln() method is similar to write(), only it adds a newline character after each statement.
Similar questions