Reputation: 9141
So I have my web page, http://vercas.webuda.com, which works only on Opera, at least for all my computers and my friend's. Well, more precisely, the CSS and JS only work on Opera. Other browsers see the standard HTML tags style.
Can anybody help me, please?
You may see the source with any browser... And I can also send someone the files via email.
One more thing, please tell me if this is not the right place to post.
Edit: Here are the screenshots:
Upvotes: 0
Views: 155
Reputation: 91
Use header javascript and styles like;
<script type="text/javascript" src="js url"></script>
<link rel="stylesheet" type="text/css" href="css url" ></link>
Upvotes: 1
Reputation: 19938
Your page is not valid XHTML. The script at the very bottom should be part of the body. Use an XHTML validator and you'll get something that should work out better. In the end do not code the pages by hand yourself, use some framework, like Ruby on Rails or CakePHP this will leave you time to focus on the content not on loose time on formatting/programming quirks...
Upvotes: 1