Inglise-vene veebi sõnavara

select (HTML) - HTML kutse, mis annab võimalust valida variandides. Näide: <select name="cars" id="cars"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="mercedes">Mercedes</option> <option value="audi">Audi</option> </select>
span (CSS, HTML) - HTML käsk, mis märgib osa teksti. Näide: <p>My father has <span style="color:blue">blue</span> eyes.</p>
stroke (JS) - JS käsk, mis värvib ääre. Näide: ctx.strokeRect(20, 20, 150, 100);
substr() (JS, PHP) -
echo substr($tekst, 2, 5); - võtab tekst, algus koht, pikkus
table (CSS, HTML) - HTML käsk, mis loob tabeli. Näide: <table> <tr> <td>Emil</td> <td>Tobias</td> <td>Linus</td> </tr> </table>
td (CSS, HTML) - table data cells. HTML käsk, mis on mõeldud tabelite ja nad on nende lahtrid. Näide: <table> <tr> <td>Cell A</td> <td>Cell B</td> </tr> <tr> <td>Cell C</td> <td>Cell D</td> </tr> </table>
text-allign (CSS) - CSS käsk, mis määrab teksti joondamist. Näide: div.a { text-align: center; }
title (HTML) - HTML käsk, mis määrab pealkiri. Näide:
<!DOCTYPE html> <html> <head> <title>HTML WebDev</title> </head> <body> <h1>Web development</h1> <p>This is a paragraph.</p> </body> </html>
tr (CSS, HTML) - Table Row HTML silt, mis teeb tabeli rea Näide:
<table> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table>
trim() (JS, PHP) - <?php $str = "Hello World!"; echo $str . "<br>"; echo trim($str,"Hed!"); ?> Lõigab rida/lause/sisu   Hello World! - oli llo Worl - sai
1 5 6 7 8