how to view html in ksh programm

have a script in ksh called file1

#!/bin/ksh

cat my.html

---------------------------
and a html file hy.html

can u tell me that if i execute "file1" script it will open hy.html bt here it is showing the all the tags along with text.........

it should open the browser part only.......

plz help,any command

Why would it do that? cat just treats any file as a series of bytes.

so can u tell me that how should i invoke an html file from a ksh script.

can u give me a simple example