|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
http://pyweaver.sourceforge.net
I am started an open-source project that is currently in development, the site main role is to attract developers. Based on the role release early and often, I decide to publish this site early.
http://pyweaver.sourceforge.net What could I do to make this site a little better without sweating too much. Last edited by Tkinter_Bell : December 12th, 2004 at 11:09 AM. Reason: Typos |
|
#2
|
|||
|
|||
|
css could really make your site come to life with little class def.
|
|
#3
|
||||
|
||||
|
yes and some graphics also. to me it looks like just plain text atm and thats not very attractive.
|
|
#4
|
||||
|
||||
|
Your html is poor but could be easily dealt with. I'll walk you through that...
Your first line should be a doctype: Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> Take the attributes out of your body element and put this in your head element: Code:
<style type="text/css"><!--
body {
background-colour:#F3F2FF ;
color: #240024;
}
//--></style>
Instead of using <p><font size="4">3.</font> Item 3</p> do it like so... Code:
<ol> <li>Item 3</li> <li>Item 4</li> </ol> <font size="4" background="../index">4.</font> is just generaly wrong, don't do it. I agree though, add some graphics, make it look good. |
|
#5
|
|||
|
|||
|
A title is neeed as well, untitled document at the top of the browser doesn't look very good
|
![]() |
| Viewing: Dev Shed Forums > Web Design > Website Critiques > http://pyweaver.sourceforge.net |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|