How do I view HTML documents on a MAC?

  • Thread starter Thread starter P3dro the Pirat3
  • Start date Start date
P

P3dro the Pirat3

Guest
Hi, I made HMTL document in Text Editor and I saved it as an HTML file, then I opened it, then Safari opens, then it shows the HTML I typed!

How do you view it correctly? I saved "<font size=90>HI</font>" in Text Editor... Then I opened the HTML file, it opened in Safari and it displayed this "<font size=90>HI</font>."

First person to answer (seriously) gets 5 points!

Thanks!
 
The most basic requirements for an HTML document are:

<html>
<head>
</head>
<body>

Your text goes here

</body>
</html>


There are many more if it's for a "live" Web page.
 
Back
Top