I am doing a computers project with HTML. HELP!?

  • Thread starter Thread starter Braylon
  • Start date Start date
B

Braylon

Guest
I have entered in all of my HTML tags and codes, and I am pretty much finished. When I open my page with internet explorer, my source code and all of my tags come up when I want to see my final rendered page. What do I do so my rendered page will come up???????
 
Use Mozilla Firefox. If that fails, switch to Linux.

No, not really.

1) Try Mozilla Firefox. See what the Error Console (Tools > Error Console) says.
2) If that doesn't work, go over your source code and see if you missed out something like a closing bracket, etc.
2a) Is all of your source code being shown, or is some missing? If some is, you probably missed out a closing bracket.
 
You need to put the css code in style tags. Like so:
<style type="text/css">
CSS CODES HERE
</style>

Then follow it with a body tag (<body>).

If you would like a tutorial I have one linked in the "source" section.
 
Internet Explorer will determine how to display the file based on the extension of the filename. To get the page to render as HTML, the file must have an .htm or .html extension. Rename the file so that it has this extension and it should work fine.
 
Back
Top