ProfK
ProfK

Reputation: 51064

QuickStart basic layout/template for web development?

I'm looking for a quick start or template, or something, to get a web site's basic layout done quickly and looking fairly professional, and then let me do the coding. I don't want a CMS, as this is for a highly customised reporting application, but I need something like frame header and two columns and frame footer. I can design the pretty reports for the wide right hand column myself, as the left hand column menu.

Upvotes: 3

Views: 1131

Answers (4)

John Dunagan
John Dunagan

Reputation: 1465

Depending on your IDE, Eric Meyer wrote a program called CSS Sculptor that you can use to quickly develop standards-based layouts. I've used it, and it's great.

Upvotes: 0

Dónal
Dónal

Reputation: 187537

You don't mention what language you're using, but if it's Java, Appfuse is a really great tool for creating an entire (skeleton) web application project from a configurable template. This skeleton includes an initial HTML/CSS/Javascript UI that includes common elements such as a login page, an "add user" page, etc.

Upvotes: 0

Bruno Shine
Bruno Shine

Reputation: 1031

you could use the BluePrint CSS framework or check out the CSS Templates

Upvotes: 1

Jeff Atwood
Jeff Atwood

Reputation: 63959

Something like YUI Grids CSS?

http://developer.yahoo.com/yui/grids/

or Blueprint CSS?

http://www.blueprintcss.org/

Or CSS boilerplate?

http://code.google.com/p/css-boilerplate/

Upvotes: 6

Related Questions