HTML / CSS / JS Cheatsheets

CHEATSHEET TABLES

HTML | CSS | JS basic code explanations.

HTML

Tag Description Code
<p> Represents a paragraph <p>Hello World</p>

CSS

Property Description Code
color Sets the color of the HTML element p { color: blue; }

JS

Function Description Code
random() Returns a random number between 0 and 1 function getRandom() {
return random();
}