Tagged Questions
Semantic markup is used to indicate the meaning and relationships between data items, in a manner formal enough to support automated reasoning. This is in contrast to the presentation-oriented markup of HTML and the syntactic markup of XML. Semantic markup is the basis of Semantic Web approaches.
32
votes
7answers
1k views
Is it ok to use <strong> in place of <b> blindly?
Note: I know <b> is presentational and <span style="font-weight:bold> is a better way, and <strong> and <em> are for emphasis but my question is not regarding this.
Should ...
22
votes
9answers
2k views
Semantic HTML5. Back to the 1990s?
I am taking a peek at Dive Into HTML5. It seems nice and interesting, but I am puzzled.
In the 1990s, at the time when Netscape was the browser and HTML was HTML2 or HTML3, there were a lot of tags: ...
21
votes
15answers
1k views
What are some of the most frequently misused html tags?
What non-deprecated tags in html are commonly misused? How should they be used/what should they be replaced with? It would be awesome if we had some sort of guide to help people learning HTML.
An ...
21
votes
4answers
406 views
Why it is accepted to use an UL, LI structure in menu lists?
I'm new to HTML. When I started reading documentation about lists, I've noticed that everywhere an <ul>, <li> structure is used, even for creating very simple lists.
But for me it's most ...
20
votes
10answers
16k views
is a DIV inside a TD a bad idea?
It seems like I heard/read somewhere that DIVs inside of TDs was a no-no. Not that it won't work, just something about them not being really compatible based on their display type. Can't find any ...
13
votes
2answers
10k views
how to tag a photo to be used as a thumbnail when page is linked to on facebook
When a person posts a link on facebook, facebook automatically finds a photo to be used as a thumbnail that shows up in the news feed. Is there some sort of (html) markup to surround a photo you'd ...
12
votes
6answers
185 views
Using custom HTML Tags
In my html I was curious if it was semantically correct to use unique identifiers such as <toys> </toys> to hold an image rather than an <h2>. For example:
Is it preferred to have:
...
12
votes
4answers
1k views
Why <big> is not in HTML 5 Tag list while <small> is?
Shouldn't both be removed? or is it means we should use <small>? Why <big> is removed but <small> is not? What is the problem with <big> which is not a problem of ...
9
votes
2answers
215 views
Proper definition for “tabular data” in HTML
I have a pedantic argument that needs resolution.
As a proper koolaid drinker when it comes to HTML, I'm all about semantic markup. As a result, of course I hate to see tables where they don't ...
9
votes
2answers
621 views
What is the most semantic way to display a street address in HTML?
I have an address that is going to be displayed on a webpage, but it is not the address for the author of the page. How should this be coded to be semantic given the w3c recommendation of:
The ...
9
votes
9answers
876 views
CSS/HTML: What is the correct way to make text italic?
This is not a noob question! What is the correct way to make text italic? It seems to me that we have the following options available to us when making text italic:
<i>Italic Text</i>
...
9
votes
4answers
748 views
How is the HTML on this site so clean?
I work with C# at work but dislike how with webforms it spews out a lot of JavaScript not including the many lines for viewstate that it creates.
That's why I like coding with PHP as I have full ...
8
votes
3answers
261 views
Does the h1 need to be the first semantic element in a header tag?
I am using a Chrome outliner extension to check the semantics of my page. It seems to be a problem to have any structural element before the h1 in the document main header tag. I was thinking the ...
8
votes
2answers
275 views
How to properly use h1 in HTML5
Which of the following is the correct way to structure a page:
1) h1 only in header
<header>
<h1>Site title</h1>
<nav>...</nav>
</header>
<section>
...
8
votes
6answers
695 views
When to use <br> line breaks vs CSS positioning?
I've often wondered about the proper use of a <br> line break. Seems that often they are incorrectly used for positioning or clearing content where CSS should instead be used.
...
8
votes
6answers
416 views
Semantics and Structure of Name-Value Pairs
This is a question I have been struggling with for a while. What is the proper way to mark up name/value pairs?
I'm fond of the <dl> element, but it presents a problem: There is no way to ...
8
votes
1answer
381 views
What HTML markup is appropriate for the transcription of an interview? [closed]
I am asking for an advice on what kind of markup should be used to mark up an interview type of content in HTML as a transcribed interview in a cleanest and semantically most sensible way?
Preferably ...
8
votes
6answers
1k views
Does Google 'understand' microformats and will it help my SEO?
Semantic HTML makes it easier for Google to crawl and 'understand' a website but what about microformats? Are microformats any more semantic/crawlable then standard HTML markup?
8
votes
4answers
783 views
Semantic HTML markup for a copyright notice
When a web site is licensed under Creative Commons, I use the rel-license microformat. When a web site is licensed under regular copyright, I have a boring paragraph element.
<p ...
7
votes
2answers
419 views
Most common way of writing a HTML table with vertical headers?
Hi all it's been a while since I've asked something, this is something that has been bothering me for a while, the question itself is in the title:
What's your preferred way of writing HTML tables ...
7
votes
8answers
287 views
In the summer of 2010 is it time to start using HTML5?
I created this question as community wiki in the hope that it and its answers will be edited as the situation with HTML5 changes.
Time to use HTML5?
This question gets trotted out about once a year, ...
7
votes
4answers
601 views
Do you commonly use Link Relations (“rel” attributes)?
I'm eager to move towards a more standards-based, accessible and semanticly-correct web development approach. At the office, I don't expect there to be huge changes straight away, but I'm trying to ...
6
votes
6answers
429 views
Which HTML5 tag should I use to mark up an author’s name?
For example of a blog-post or article.
<article>
<h1>header<h1>
<time>09-02-2011</time>
<author>John</author>
My article....
</article>
The author ...
6
votes
2answers
156 views
Linking to and getting data from django models in user-entered text
I'm looking for functionality vaguely like that provided by Semantic MediaWiki. In short, I'd like for a user, in an arbitrary text field, to be able to do things like the following (I'm making up ...
6
votes
2answers
573 views
Semantics, standards and using the “lang” attribute for source code in markup
I haven't been able to find authorative explanations, microformats or guidelines for the following, so I'm throwing it open. If I've missed something, speak up!
Let's say you have an HTML page that ...
6
votes
3answers
85 views
semantic way of representing lines of a play in HTML
Take the most famous group of lines of them all:
Hamlet: To be, or not to be: that is
the question: Whether 'tis nobler in
the mind to suffer The slings and
arrows of outrageous fortune, Or ...
6
votes
4answers
333 views
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 ...
6
votes
5answers
143 views
What are practical cons to use W3C valid presentational element, which are not listed as deprecated?
What are practical cons to use W3C valid presentational element, which are not listed as deprecated
for XHTML-CSS developers,
Sighted End users of site,
and for Screen reader users, ?
like ...
5
votes
3answers
292 views
HTML5 sematics: Where does the main content title belong?
Every time I create a HTML5 page, I struggle with where to put the main page title. Everybody seams to handle this differently...
Here is the situation:
Let's say I have a website that is called ...
5
votes
6answers
275 views
input type=“submit” Vs button tag are they interchangeable?
input type="submit" and button tag are they interchangeable? or if there is any difference then When to use input type="submit" and when button ?
And if there is no difference then why we have 2 tags ...
5
votes
2answers
97 views
Semantic HTML: Should I use the <nav> tag for a tag cloud?
I'm putting together my blog at the moment - which includes a tag cloud to allow people to browse by topic
I'm considering wrapping the tag cloud links in a <nav> tag since these are ...
5
votes
2answers
224 views
How to properly markup/style ordered lists to compensate for large item numbers
I am dynamically generating a web page containing an ordered list. The page contains 10 items and uses the attribute 'start' to number the items accordingly. A generic ordered list with ...
5
votes
3answers
460 views
Is it good to put a 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 here?</td>
...
5
votes
4answers
1k views
Is it ok to use cellpadding=“2” cellspacing=“2” in <table>?
Is it ok to use cellpadding="2" cellspacing="2" in <table>? Or are these not recommended by W3C and not right according to web standards?
What are alternatives in CSS?
Update: and is it also ...
5
votes
3answers
345 views
When we should use <dl> over <ul>?
In what scenarios we should go for <dl> not <ul>?
Does it matter for screen reader user <ul> or <dl>? does screen reader software notify user about content is in <ul> or ...
5
votes
5answers
977 views
Semantic markup for complex or nested HTML tables?
I want to know the best way to mark up tabular data on a web page when data rows contain complex data that can't fit within a single table row.
Here's a concrete example. The first line has a list of ...
5
votes
3answers
536 views
What html markups to use for displaying label/value data?
I want to render a profile user container that contains a list of labels and their associated values.
Here is an excerpt of information and layout I'd like to display:
First Name.......MyName
...
4
votes
2answers
333 views
Preferred approach for marking up a blog with schema.org
Background/context
As schema.org is relatively new, perhaps this question will promote more discussion than a definitive answer. Either way, hopefully some learning from others' ...
4
votes
1answer
101 views
How to convert this 4 column table into single column table, but still maintaining the accessibility the table
I want to make this table http://jsfiddle.net/B7SVK/ from 4 column to single column because I need to convert this table from Desktop to Mobile website and mobile device has limited width. and I don't ...
4
votes
1answer
259 views
Are block-level elements allowed inside inline-level elements in HTML5?
For an example
Is <a href="#"><h1>Heading</h1></a> valid in HTML5?
4
votes
3answers
786 views
Correct Semantic tag for copyright info - html5
What would be the best and most semantic tag/method for including a copyright notice in the footer of a web site?
4
votes
1answer
388 views
Is Microformats vCard still a best semantic way to code “contact information”, in HTML 5?
Is Microformats still a best semantic way to code contact information in a web page?
I asked this question almost 2 years ago and got the answer where Microformat was the best solution. What is the ...
4
votes
2answers
2k views
HTML5 nav tag correct usage
<ul class="mainMenu">
<li><a href="#">Home</a></li>
<li><a href="#">Forum</a></li>
<li><a href="#" ...
4
votes
4answers
256 views
Web Accessibility Testing Tools
I'm wondering if any of you know of any good free (nearly free) applications that are used for web accessibility testing.
So far, I have found;
WAT - Web Accessibility Toolbar
...
4
votes
5answers
456 views
Semantic HTML Practice
I read about semantic HTML online...
Semantic HTML means using HTML tags for their implied meaning, rather than just using (meaningless) div and span tags for absolutely everything.
If you ...
4
votes
5answers
127 views
Do html headers always have to count up from 1?
I'm talking about proper semantic mark-up.
I know normally there's no reason not to start at h1 and work your way down from there.
But, if I am building something like a sidebar that has its own ...
4
votes
3answers
176 views
An “a” element around a “div”
I know the topic of having an inline element around a block-level element as being semantically invalid has been discussed here at length.
However, the situation of putting an "a" element around a ...
4
votes
4answers
261 views
What is the actual meaning of seperation of content and presentation?
What is the actual meaning of separation of content and presentation?
Is it just mean to avoid inline css?
Does it mean that the design should be able to manipulated without chaning the HTML?
Can ...
4
votes
5answers
197 views
Does it matter <strong> in <em> or <em> in <strong>?
Does it matter <strong> in <em>
<p><strong><em>Some text</em></strong></p>
or <em> in <strong>?
<p><em><strong>Some ...
4
votes
4answers
170 views
Suggestion for Semantic Markup
I am creating a web GUI for an application I am working on. This particular section will sit within a larger page that is of a good semantic makeup. However, I am unsure what the best option to markup ...