html - Building website with menu without using frames -
with dreamweaver, use frames define left column menu, , clicking on each menu tab change html page displayed on right frame. however, webdesign tools such kompozer not support frames.
- what best way design html personal webpage such menu bars, without using frames?
- if html not enough, other scripting languages recommend learn java background , basic knowledge of html , css.
- what web-design tools recommend build personal website ?
1. frames
not recommend use frames create design looking for. page layout created using div
s way go. do:
<html> <head> <title>my title</title> <style type="text/css"> div { margin:0; padding:0; } #container { margin:0 auto; width:960px; } #menu { float:left; width:200px; } #content { float:right: width:760px; } </style> </head> <body> <div id="container"> <div id="menu"><!-- menu --></div> <div id="content"><!-- content --></div> </div> </body> </html>
2. scripting language
html , css can enough create you're looking for, if want have separate templates layout, menu , content have server side language can serve templating engine.
3. tools
since have background in java, recommend learn creating html , css using text-editor of choice. easy languages learn and, javascript, form basis wants create websites.
Comments
Post a Comment