i have this html code and i wanted to see what kind of improvements you would make to it if it was yours, im just curious to know!

the code is here:

http://pastie.org/1647150

p.s. the code deos the job :))

link|improve this question

This makes no sense. Why are you asking us for a code review of something that isn't yours? Live page: jobs.bbc.co.uk/fe/tpl_bbc01.asp – thirtydot Mar 8 '11 at 12:48
2  
i never said it was mine!!! i am allowed to review code!!! – pingpong Mar 8 '11 at 12:49
I'd use less tables, style them in CSS linked and possibily avoid inline styling and <font> attribute. My 2 cents, for what it's worth. Especially after seeing @thirtydot comment – Damien Pirsy Mar 8 '11 at 12:50
I never said you said it was yours. I'm simply saying this isn't a real question. – thirtydot Mar 8 '11 at 12:50
1  
could be for self learning purposes – Ryan Murphy Mar 8 '11 at 12:50
feedback

2 Answers

up vote 1 down vote accepted

Separate content and presentation: do not use HTML attributes like width and the font tag, these things should be achieved with CSS.

link|improve this answer
feedback

I would improve it by indenting it more.

ie.

<table>
     <tr>
          <td>
          </td>
     </tr>
</table>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.