ID:267682
 
How do I make writing in the browser?
well...

usr << "Hello"

that will make only the usr/mob hear it

view << "hello"

will make everyone in view of where the noise is coming from hear it.
In response to Mousie_kebabs
If your talking about the Tab/Button for Browsing, you would do this:
var/const/webpage = "<html><head><title>TITLE OF PAGE.</title></head><body><font color=blue> Blue text should appear in the browser window.</body></html>"

mob/verb/Browse_WebPage()
usr << browse(webpage)
mob/verb/Browse_WebPage2()
usr << browse(webpage,"window=WebPage")

Browse_WebPage will show it in the browser (the tab at top right of DreamSeeker)
Browse_WebPage2 will show it in a pop-up window.
In response to JackGuy
Whoa... I just replied to you you and the reply box has shifted a lot. Anyway, it helps to know a lot of HTML while constructing a browser. What Jack sent you was a modified version of the browser. src << browse("Stuff here")

That call the browser, and keep it all on the right side (in the standard browser).