Website Fixed!
Thanks to my genius, the website is now fixed. And it was not a simple fix by any means. I changed it so that it would stay stable.
For anyone who did not get to check it out in its horrible state, here is a photo:

A tip to all web-designers whether you are on a FIRST team or not: Organise your files in folders and always link properly.
It is professional to link to your content via the server, not via an Internet URL.
Dont do: <img src="http://www.team1504.com/media/team/img/penguin.png" />
Do: <img src="media/img/penguin.png" />
Why?
- Because sometimes the web browser the user is using may be filtered so they cannot view the content that is linked because the browser searched for that content as if it were on the Internet, not on the server.
- The majority of a server is private. Unless you put specific permissions on a file, the user usually cannot see it alone. When one accesses content on the web via the Internet, the server that hosts the site detects the user as foreign and displays what is public. Whereas if the src of the content is
/media/img/penguin.png,it sees that the site is accessing the content. - Having http://…. is just not clean and is therefore inefficient web design.
Of course, no one wants you to download the entire FIRST site, upload it to your server, and link to it, because that would be impossible (unless you had permission and access to the root of their server) and a waste of server space. For external content that is not downloadable, you can link to it via its Internet URL.
Recent Comments