semantic-markup

What is prefered method to put footnotes for html table?

Like this. this a screenshot of MS word file. Should i put in a tfoot or in td as a <p>dwdwdewwe</p> or i should put after </table> in a <p></p>? and can we put tfoot anywhere inside <table> And should i give link to footnotes * to jum to footnotes at bottom. ...

What is the second best possible way to make this Content Box's (Fixed width) corners round (without border-radius and javascript)?

Is it possible to make this box's corner round with same html tags. without using any other tag and border-radius property and javascript. but i can use css classes and background images. and box height should be depend on content of <p>grr</p> Width of Box and height of <h2> is fixed , but I need height of content flexible. <h2>Nulla...

Is it good to put a &nbsp; inside an empty <td>?

If this is the structure: <table cellspacing="0" cellpadding="0"> <tr> <td>I don't need anything here, should I always put a &nbsp; here?</td> <td>item </td> </tr> <tr> <td>model</td> <td>one</td> </tr> <tr> <td>model</td> <td>two</td> </tr> <tr> <td>model</td> <td>thr...

What is preferred accessible and semantically correct method to code this type of data design?

What is preferred accessible and semantically correct method to code this type of data design? Table UL, LI DIV,SPAN For icons should i use for each place or i should is icon from CSS sprites? If we use css sprite here then how to code, and what will happen when images will be disabled ? Every link will open in new window and I hav...

are these css classes names good?

See section /* Common Classes */ of this page. http://webdesign.about.com/od/css/a/master_stylesht_2.htm are these css classes good, to use in any project? in terms of semantic? /* Common Classes */ .clear { clear: both; } .floatLeft { float: left; } .floatRight { float: right; } .textLeft { text-align: left; } .textRight { text-...

If I prefer semantic naming then shouldn't i use any CSS Framework and grid approach?

If I prefer semantic naming then shouldn't i use any CSS Framework and grid approach? Which approach is better Grid or Freehand? Is any CSS Frameworks really can save time and make semantic code even for Experienced CSS developer? Many CSS Frameworksd are popular in static PSD 2 XHTML+CSS conversion and in wordpress/drupal/joomla them...

What is the logic behind to use Semantic meaningful markup?

Is it only for screen reader software? because browser renders both type of tags semantic and presentational in same manner. For example: for browser for us and for css <strong> and <b> is same. what is the purpose to semantic tag over presentational tag. is it for screen readers only or it's for better management of code? if it's f...

What is usefulness of W3C's "Semantic Data Extractor" in semantically correct XHTML CSS Development?

What is the usefulness of W3C's Semantic Data Extractor? http://www.w3.org/2003/12/semantic-extractor.html This tool, geared by an XSLT stylesheet, tries to extract some information from a HTML semantic rich document. It only uses information available through a good usage of the semantics defined in HTML. The aim is ...

is it good idea to remember html tags in css classes and Ids?

If we keep tag name within selectors. For example: #divMainContentBody { … } .spanImportant { … } This minimizes the need to switch between your stylesheet and your markup, since the ID and class already tells you what element type it is referring to. Updated after @Guffa's answer: I found this advise in this book also http://...

Is W3C Valid XHTML and CSS Code, Semantic and Accessible Mark-up enough for site's SEO in general?

I created a web-site for a client with W3C Valid XHTML and CSS Code, Semantic and Accessible Mark-up and I had said to client my code will be SEO friendly. Theyway i code it will be good for your site SEO. I putted my all efforts to make good code Now my non-techie Client is asking me, Should him go for any SEO company even after provid...

iPad/iPhone: Form filling application pointers

Folks, I am starting work on an iPad/iPhone application that is essentially a form-filing UI. The requirement is to present a (rather large) form to the user. The form is composed of sections and questions, like so: Form Question 0.1 Question 0.2 Section 1 Question 1.1 etc. The user can take various paths down the form based on an...

Should we use fieldset even for one search box input?

Should we use fieldset even for one search box input? Which we use in header of the site usually? ...

Should I Use Anchor, Button Or Form Submit For "Follow" Feature In Rails

I am developing an application in Rails 3 using a nosql database. I am trying to add a "Follow" feature similar to twitter or github. In terms of markup, I have determined that there are three ways to do this. 1) Use a regular anchor. (Github Uses This Method) <a href="/users/follow?target=Joe">Follow</a> 2) Use a button. (Twitte...

Use Radio Buttons or Dropdown lists

Well, I curious as to the nature of Radio groups and dropdown lists in HTML. I have found that radio buttons are difficult to style but I would like to style my elements for required fields. I asked a previous question regarding styling radio buttons and giving a border color like you can do with text boxes, example: <input type="text"...

Do you use microformats in your web projects?

Do you use microformats in your web projects? If yes then why? If no then why? If yes then for which things do you use? Is there any alternate of microformats in HTML 5 ? I haven't used microformats yet. Should i start to use now or not much need? ...

What is the mean of "On Page SEO"?

What is the mean of "On Page SEO"? Is it related to mark-up , accessibility and semantics? Edit: Does "On Page SEO" requires input from XHTML Coder? Is it a job of developer? ...

Is there a semantic difference <span>'s and <div>'s?

Possible Duplicate: What is the difference between HTML tags DIV and SPAN? I know when coding HTML, I'm supposed to keep semantics in mind, e.g., h1 needs to be a main header, h2 needs to be a subheader, tables need to be tables, use <em> for emphasis instead of <i>, etc. Is there a proper difference between divs and spans exc...

3 fixed Columns (header and footer) using DIVs, NO Absolute DIVs, IE friendly, ALL columns stretch equally.

Left to right, Col1 id 560px wide with 10 px padding, middle column, 250px wide with 5px padding and Col3 (siderbar) is 200px wide with 3px padding. Background coloR, no matter text length in any column should stretch vertically equal. No javascript (jQuery workarounds) to make it work. It needs to be pure Semantic Markup with CSS. Each ...

Is there a way of having Wordpress render `the_category()` items as an (x)html list?

I'm using the following to render the_tags() in Wordpress 2.9.2, currently developing a theme on localhost: <?php the_tags('<ul class="postmetadata"><li>','</li><li>','</li></ul>'); ?> and would like to have same -near-semantic- output from the_category(), which doesn't seem obviously attainable (having looked at the relevant codex pa...

Do you know best site on Net to learn XHTML 1.0 strict , Like other than W3schools.com but with better and latest content?

Do you know best site on Net to learn XHTML , Like other than W3schools.com but with better and latest content? I have to link some friends who want to learn HTML? I like the "Try it editor" of W3C schools but not the content. I need semantic discussion also. what is the element all about and what is the semantic value, even if's it's v...