Tag

HTML pre Tag

<pre> Text in a pre element is displayed in a fixed-width font, and it preserves both      spaces and line breaks </pre> Definition and Us...Read More

HTML picture Tag

<picture> <source media=”(min-width: 650px)” srcset=”img_pink_flowers.jpg”> <source media=”(min-width: 46...Read More

HTML param Tag

<object data=”horse.wav”> <param name=”autoplay” value=”true”> </object> Definition and Usage Th...Read More

HTML p Tag

<p>This is some text in a paragraph.</p> Definition and Usage The <p> tag defines a paragraph. Browsers automatically add some space...Read More

HTML output Tag

<form oninput=”x.value=parseInt(a.value)+parseInt(b.value)”>0 <input type=”range” id=”a” value=”50&...Read More

HTML option Tag

<select> <option value=”volvo”>Volvo</option> <option value=”saab”>Saab</option> <option valu...Read More

HTML optgroup Tag

<select> <optgroup label=”Swedish Cars”> <option value=”volvo”>Volvo</option> <option value=”...Read More

HTML ol Tag

<ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> <ol start=”50″> <li>Coff...Read More

HTML object Tag

<object width=”400″ height=”400″ data=”helloworld.swf”></object> Definition and Usage The <object&g...Read More