The Square HTML Special Character

Displaying a simple square in HTML can be done by using the code:
&#9744
Example: ☐

Read more

Pre-Selecting Form Elements

Checkboxes:

<input type="checkbox" name="test_box" value="1" checked />
<input type="checkbox" name="test_box" value="2" />

Radio Buttons

<input type="radio" name="test_radio" value="1" checked />
<input type="radio" name="test_radio" value="2" />

Dropdowns (<select>)

<select name="test_select">
<option value="1" selected>Value 1</option>
<option value="2">Value 2</option>
</select>

Read more

Element Design Quick Tips

A new feature that will be immediately added to the blog are “Quick Tips”. These are short, several sentence articles that describe an important aspect of designing and developing a website. For a full listing of tips, click “Quick Tips” on the right navigation.

Read more