SCRIPT – HTML tag for embedding client-side code
Select/Option –
<select> / <option> – <select> HTML element, mis loob valikuvälja, kus kasutaja saab valida ühe või mitu valikut, samas kui <option> on selle valiku erinevad valikud.
Näide:
<select> <option value=”1″>Valik 1</option>
<option value=”2″>Valik 2</option>
<option value=”3″>Valik 3</option> </select>
SPAN – Inline container for text in HTML
sup (HTML) – The
<sup> tag defines superscript text. Superscript text appears half a character above the normal line, and is sometimes rendered in a smaller font. Superscript text can be used for footnotes, like WWW[
<p>This text contains <sup>superscript</sup> text.</p>SVG – SVG (Scalable Vector Graphics) is an XML-based, open standard for defining 2D graphics on the web
svg –
The <svg> tag defines a container for SVG graphics.
SVG has several methods for drawing paths, boxes, circles, text, and graphic images.
Draw a circle: <svg width=”100″ height=”100″>
<circle cx=”50″ cy=”50″ r=”40″ stroke=”green” stroke-width=”4″ fill=”yellow” />
</svg>
