Whenever you put a link on a web page, make sure that it has text content. This may seem incredibly obvious, but it is actually not all that uncommon to find links that do not contain any text at all.
These links usually come in one of the following shapes:
<a href="http://example.com/" accesskey="0"></a>
<a href="http://example.com/"><img src="image.gif" alt=""></a>
Read more…
Web dev
HTML, links
The fieldset and legend elements, which should always be used together, allow you to create and name groups of related input fields in HTML forms. By doing this you help users understand how the input fields are related.
How the grouping is conveyed to the user depends mainly on whether the user is sighted or not. Most graphical web browsers draw a border around fieldset elements and render the legend element on top of the border, while screen readers may speak the legend text at the start of each fieldset or before each form control within a fieldset.
Read more…
Web dev
elements, fieldset, form controls, group, HTML, legend
There was a time when many, many, forms on the web had a reset button. Thankfully, reset buttons are not quite as common these days, but there are enough of them out there to cause users lots of frustration.
Read more…
Web dev
form, HTML, reset button
Online converters always come in handy. Once you need to perform some operation with your files, they can save your time achieving the same results online, without installing some specific software. In fact, there are many online tools, which convert formats, files and code snippets for free. Some of them are quite specific tools aimed for developers, but some are common “all-rounders”, which manage to convert almost every format to a more popular one. Using them, you can generate .pdf-documents out of images, images out of texts or RSS-feeds out of web-sites. You can also convert any audio- and video-files immediately – the results can be received via e-mail.
So what can you use? What should you use?
Read more…
Computers, Internet, Web dev
color, css, HTML, online converter, pdf, rss, Tools

Table is an excellent way of presenting information, especially when a company wants to cite various prices for its services or products. For instance, some websites require users to sign up different levels of membership in order to access certain exclusive contents. They can present to users the distinct features that each level has to offer in a table-like format. Depending on the content, tables can be good for arranging many other kinds of data for deeper clarity other than pricing.
Read more…
Computers, Graphics, Internet, Web dev
Beautiful, Examples, HTML, Javascripts, Table Building