Full Stack Web Developer

Sample Sheet for HTML Elements

This page gathers various HTML elements onto a single page. Gathering these sporadic elements in a single location makes catching design bugs easier to spot.

Keyboard Input with <kbd>

To open the Firefox Inspector tool, press Ctrl + Shift + C.

Console Input with <kbd>

From the command line, type grep | history "ssh" to see what servers you recently SSH'd into.

Variables with <var>

Use white-space: nowrap to prevent a block of text from wrapping to a second line. Also, resize the browser width to text whether white-space: nowrap will display well on different browser widths.

Code Example <code>

## Some generic code.
$variable = null;
for ($i=0; $i<10; $i++) {
	...code...
	...code...
}

Sample Output <samp>

Unused.

Unordered Lists

  • Alpha
  • Beta
  • Gamma
    • Alpha
    • Beta
    • Gamma
    • Delta
  • Delta

Ordered Lists

  1. Alpha
  2. Beta
  3. Gamma
    1. Alpha
    2. Beta
    3. Gamma
    4. Delta
  4. Delta