Inglise – eesti / vene terminid / dictionary

fillStyle (HTML, JavaScript) - fillStyle - JS atribuut, mis värvib määratud ala, kasutakse koos <canvas> elementiga Näide: ctx.fillStyle = "red"
Footer (CSS, HTML) -
  • HTML käsk, mida näitab HTML lehe jaluse / подвал
  Näide: <footer> </footer> footer {omadus}
Framework - Framework is a platform that provides a foundation for developing software applications
Frontend (CSS, HTML, JavaScript) - Frontend is what users see and includes visual elements like buttons, checkboxes, graphics, and text messages.
function (JavaScript, PHP) -
  • Määrab funtsiooni (php/js) nimega nimi()
  • võib mitu korda kutsuda
Näide: function [nimi]() { tegevus }
Git - Git is a software platform mainly used by computer programmers for collaboration
h2 (CSS, HTML) - Teise taseme pealkiri Näide: <h2> pealkiri </h2> h2 { omadus}
header (CSS, HTML) -
  • HTML käsk, veebilehe päis - шапка, kus määratakse lehe logo, pealkiri ja mis kordab igal lehel
Näide: <header> </header> header {omadus}
highlight_file() (PHP) -
highlight_file - Prints or returns a syntax-highlighted version of the code
Example:
<?php if (isset($_GET['code'])) {die(highlight_file(__FILE__, 1));} ?>
<?php
if you put "?code" at the end of the link, the syntax of the entire code will be displayed  
if (JavaScript, PHP) - Tingimuslik operaator / statement See kontrollib argumendina antud tingimust Näide: if (tingimus) { tegevus, kui tingimus on täidetud (TRUE) } else { tegevus, jui tingimus ei ole täidetud (FALSE) }  
1 2 3 4 5