Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
QBasic Network now administered by Phalaris Entertainment
#1
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.
Screwing with your reality since 1998.
Reply
#2
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.
f only life let you press CTRL-Z.
--------------------------------------
Freebasic is like QB, except it doesn't suck.
Reply
#3
Change the color of the title. Try indentation to divide sections/articles.
Reply
#4
LOL, 1998. Well I think it works for now. I have been asked by a few in MSN to remove the table borders.
Screwing with your reality since 1998.
Reply
#5
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? :???:
url=http://www.copy-pasta.com]CopyPasta[/url] - FilePasta
Reply
#6
Quote:<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">

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


* Mr Match cries
Itch-Five Design - Your source for free, well designed, web design.
- - - - - - - - - - - - -
Quote:I use QB religiously. Too bad I'm an athiest.
Reply
#8
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.
Screwing with your reality since 1998.
Reply
#9
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).
url=http://www.copy-pasta.com]CopyPasta[/url] - FilePasta
Reply
#10
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
Itch-Five Design - Your source for free, well designed, web design.
- - - - - - - - - - - - -
Quote:I use QB religiously. Too bad I'm an athiest.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)