Qbasicnews.com

Full Version: QBasic Network now administered by Phalaris Entertainment
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I've been putting this off for about two weeks, but I've been working on a design for the new Phalaris Entertainment, replacing the temporary amalgamated name that used to be AMS Productions.

Click here to have a look, and let me know your thoughts. If you wish to see the outdated real site, click my signature.

Excuse the random dead link, especially around the Blobworld site.
It's very 1998, for some reason.
I like it, but change the title bar's colour to blue or something...I can barely read that yellow.
Change the color of the title. Try indentation to divide sections/articles.
LOL, 1998. Well I think it works for now. I have been asked by a few in MSN to remove the table borders.
Quote:LOL, 1998. Well I think it works for now. I have been asked by a few in MSN to remove the table borders.

Please do. It might make the color choice look intentional and not just OMG I KAN DUH COLORZZ!11 Tongue

Also, the background looks like some wordart out of a document I made when I had just discovered that feature :lol: Whats wrong with plain white?

I wanted to make an example of how it would look without table borders, but I stopped when I saw 3-4 sets of <html>...</html>, same with head and body... WTF? :???:
Quote:<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">

You're a baaad man.
Quote:<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">


* Mr Match cries
That's because I slapped it together in FrontPage to get the look right, I will optimize later.

Four or five sets of <html>? Maybe because it uses PHP File Include.
There should only be one of each <html>, </html>, <body>, </body>, <head>, and </head> in one page, regardless of how you construct that page (like using includes).
The PHP include files shouldn't have the <html></html> <body></body><head></head> tags. The HTML/PHP that's in the php include file is directly displayed in the browser.

Example:

What you see in your editor:
Quote:<html>
<body>

<?php include("menu.php"); ?>

<h1>Stuff</h1>

<p>Some more stuff stuff stuff.</p>

</body>
</html>
Quote:<ul>
<li><a href="menulink1.html">Menu Link 1</a></li>
<li><a href="menulink2.html">Menu Link 2</a></li>
</ul>


What the browser actually displays:
Quote:<html>
<body>

<ul>
<li><a href="menulink1.html">Menu Link 1</a></li>
<li><a href="menulink2.html">Menu Link 2</a></li>
</ul>

<h1>Stuff</h1>

<p>Some more stuff stuff stuff.</p>

</body>
</html>



And if this is not your coding mistake, then it's Frontpage just being lame. Tongue
Pages: 1 2