Align HTML Elements

Keywords: html, align, translate, translation
<textarea name="name" dir="rtl">some text</textarea>

<select name="name" dir="rtl"> 
 <option>text</option>
</select>

Anchor Tag

Keywords: html, anchor tag, a name
<a href="appointments.asp?Go=1#top">

<a name="top">

Base HREF

Keywords: html, base, href, anchor tag
<base href="http://www.test.com/"> 

<a href="hello.asp">Say hello</a>

Color Chart

Keywords: html, color chart, websafe
http://www.12bravo.com/color_chart.htm

Dropdown/Select: Multiple

Keywords: html, dropdown, select, multiple, expanded
<select name="state" size="8" multiple>
	<option value="CA">California</option>
	<option value="OH">Ohio</option>
</select>

Embed Media

Keywords: html, embed, media, sound, .wav, bgsound, x-mplayer
<a href= "bark.wav">

<bgsound src="bark.wav" loop="5"> 

<embed src="bark.wav" height="40" width="200">

<embed src="bark.wav" hidden="true" autostart="true">

<embed src="bark.wav" height="285" width="325" border="0" type="application/x-mplayer2" 
	loop="true" autostart="true">

Font

Keywords: html, css, font
<font face="Arial, Helvetica, sans-serif" size="1" style="font-size:10.5px">

Frames

Keywords: html, frame, frameset
<frameset cols="185, *" frameborder="1">
	<frame name="codeleft" scrolling="yes" noresize target="main" src="left.asp">
	<frame name="main" src="main.asp">
</frameset>

iFrame

Keywords: html, iFrame
<iframe width="190" height="350" id="ThumbFrame" name="ThumbFrame" frameborder="0" src="ThumbFrame.asp">
	Your browser does not support iframes. 
</iframe>

Image Map

Keywords: html, image map
<map name="ImgMap">
<area href="/store/enter.asp" target="_self" shape="rect" coords="45, 352, 196, 402">
<area href="/solutions/prof.asp" target="new" shape="rect" coords="239, 340, 444, 401">

<img src="/newsletter/september.gif" usemap="#ImgMap" border="0">

Image: Border

Keywords: html, image, border
<img src="images/test.gif" style="border-width:0px" />

MailTo

Keywords: html, mailto, subject, a href, anchor
<a href="mailto:support@12Bravo.com?subject=Attn: Support Department">Email Us</a>

Meta Tag: Refresh

Keywords: html, meta, refresh
<meta http-equiv="Refresh" content="5">

Meta Tags: No Cache

Keywords: html, meta tags, no cache
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">

Table

Keywords: html, table, rules, frame
<table bgcolor="#ffffff" border="1" bordercolor="#505050" rules="none" frame="box">