Inglise-vene veebi sõnavara

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