fill() – JS käsk, täidab praeguse tee –
fillRect() – JS käsk, joonistab “täidetud” ristküliku – const canvas = document.getElementById(“myCanvas”);
const ctx = canvas.getContext(“2d”);
ctx.fillRect(20, 20, 150, 100);
font – CSS käsk, mis võimaldab muuta font(suurus, pere) – Näide:
div{
}
font-family: “Arial”;
font-size: 18px;
Footer – Подвал сайта / Самая нижняя часть страницы – veebilehe jalus –
Footer – Подвал сайта / Самая нижняя часть страницы – veebilehe jalus –
form – HTML käsk, kasutatakse HTML-vormi loomiseks kasutaja sisestamiseks. – Näide:
<form>
<label for=”nimi”>Nimi:</label><br>
<input type=”text” id=”nimi” name=”nimi”><br>
<label for=”perenimi”>Perenimi:</label><br>
<input type=”text” id=”perenimi” name=”perenimi”>
</form>