dreamweaver in firefox

by prettyscripts on 2008-06-26 14:58:33 • Leave a comment »

freesoftwarefirefoxaddon

codetch is a free, open source source code editor. the description at it’s download page says Get the feel of Dreamweaver in a Firefox extension. i’ve never used dreamweaver and i can’t comment on that. imo, this is a very primitive editor. knowled… more »

Tags: addon, dreamweaver, editor, firefox, html

html: tab char

by prettyscripts on 2008-06-24 16:42:49 • Leave a comment »

html

there is no tab character in html. to indent text on web page like a tab in word processors, this can still be achieved. prefix the text with the required number of space char  . this is not a nice way. or use css. define the left margin… more »

Tags: html, tab

css: tableless table

by prettyscripts on 2008-05-23 12:22:59 • Leave a comment »

csshtml

a table layout can be achieved without <table> in html, with <div> and css..col { width: 200px; float: left; }<div> <div class="col">row 1, col 1</div> <div class="col">row 1, col 2</div></div&… more »

Tags: css, html, span, table

html: definition list

by prettyscripts on 2007-12-05 00:47:44 • Leave a comment »

html

i always forget the syntax for <dl>, <dt> and <dd> tags, even though it’s obvious – list, terms and definition / description. here’s the correct syntax:<dl> <dt>the term</dt> <dd>description</d… more »

Tags: html, list