M
Marnen Laibow-Koser
Krithika said:I am told to create static HTML page and asked to write something like
what Marnen has quoted. External library and CGI script are also not
required to use.
So let me try what Marnen has mentioned.
Could you tell me if I can do something like this
file_html = File.new("sample.html", "w+")
file_html.puts "<HTML><BODY BGCOLOR='green'>"
file_html.puts "<CENTER>This is a color</CENTER><br>"
file_html.puts "<CENTER><FONT COLOR='yellow'>This is
yellowww</FONT></CENTER>"
file_html.puts "</BODY></HTML>"
file_html.close()
system("start sample.html")
Why are you asking? In the time it took you to type that, you could
have executed it and inspected the result.
(BTW, your HTML code is of really poor quality.)
Thanks,
Krithika
Best,