Best layout scheme for website please ?
Hi Guys
I am teaching myself to design a couple of web sites.
They will be small to start with and feature a few pics on each page that will link to other pages.
I am using Dreamweaver and am studying a tutorial on it.
What do you guys think is the best way (modern practice) of designing a web site ?
Ie Frames, Tables, Cascading Style Sheets, Database ? I get confused by all these different terms.
The tutorial tells you how to set up each system, but not which one is best for different applications.
I would like to try to start off on a good layout system so that I do not have to re-design the whole thing later on.
regards
Digby
NZ
Re: Best layout scheme for website please ?
I actually like frames, but they are frowned upon at the moment :dabs:
Frames make it harder to navigate using the forward and backward buttons on the browser.
Start off with tables in terms of layout. Cascading Style Sheets are powerful, and good to use, but they could be a bit overwhelming for a "novice", but if you're serious about doing things properly, I'd say look at those too.
Also, the thing to think about when you're designing the page layout, is that not everyone has the same browser as you, and not everyone has the window size set up the same as you.
Re: Best layout scheme for website please ?
user dreamweaver, download the webpage from the internet and do some researching.
Re: Best layout scheme for website please ?
Quote:
Originally Posted by
superguy
user dreamweaver, download the webpage from the internet and do some researching.
What web page do you mean for me to downlaod ?
The reason I asked this question is the main reason people use forums !
That is to get other peoples ideas and suggestions.
Yes I could study 50 web pages, but I wanted to ask some of the experts on here "that have been there and done that".
I would help you on any subject if I was able to !
I wanted to know what is the best styel ofsetting up websites these days ?
Frames, Left Hand Navigation, Top ? Right Hand ? Tables etc etc
Regards
Digby
Re: Best layout scheme for website please ?
Hello digmen1,
Here are some tips:
- You shouldn't use Frames because search engines like Google, Windows Live and the other don't like them at all, thus you won't be as well referenced on the internet as you would have been if you hadn't frames
- Use tables or, better, Cascading Style Sheets, to create your website layout (check out that website http://www.devguru.com/technologies/css2/8044.asp for all the existing properties).
- You can use a database (MySQL, PostgreSQL, etc) if you need to store persistent data, like user account information or news
In order to access your database, you need to use a scripting language which supports it (ASP.NET, PHP, etc) which are executed server-side. Please refer to the corresponding websites in order to learn the existing methods and properties.
Last but not least, when you've finished your work, validate your webpages on the W3C Website (XHTML 1.0 Strict is the best at the moment).
Hope that helped!
Good luck ;)
Re: Best layout scheme for website please ?
hand written code, by with simple frame scripts- keep it simple
Re: Best layout scheme for website please ?
Thanks guys,
That is exactly the sort of information and help I was looking for.
Kind regards
Digby
Re: Best layout scheme for website please ?
depends what you are doing, but tables are considered out dated now
its all DIV and SPAN and use CSS classes to style them
get yourself and tutorial video, Lynda.com training has a good CSS one out
Re: Best layout scheme for website please ?
http://www.w3schools.com/.
Do some tutorials. Depending on how serious you are about getting into it, I would recommend getting some books about CSS and XHTML. It’s extremely handy to have references, code examples, and general coding principles that you can easily refer to.
I think its important to understand, from the beginning, the idea of separating content from style. Xhtml and CSS standards will help you adhere to that principle. So learn them, and stick to them.
Tables and frames, although they may initially seem easier to understand will leave you with cluttered, outdated and error prone code.
There are people that swear by Dreamweaver, but if you really want to learn how to code I would recommend using a text editing program.
Also there’s nothing wrong with downloading someone else’s webpage and picking it apart. Play with it, change some CSS properties and see what happens.
Re: Best layout scheme for website please ?
Thanks for all the suggestions guys,
Very helpful !
Regards
Digby