Testing Ground
Welcome to the testing ground! I use this page to try out new things I learn about web development, as well as a quick reference in case I forget how to write something.
Other than that, there's not really much else to see.
Emphasis & Importance
I can emphasize text, or make it strong!
Links
I can add a link to an external website, another page on this website, or a link to the bottom of the page.
Abbreviations
If I use an abbreviation like HTML, I can include the expanded meaning.
Lists
I can create an unordered list, like so:
- Item 1
- Item 2
- Item 3
Or an ordered list, like so:
- Item 1
- Item 2
- Item 3
Or a description list, like so:
- Term 1
- Definition of the term.
- Term 2
- One definition for the term.
- A different definition for the term.
- Term 3
- Term 4
- Term 5
- The definition for terms 3, 4, and 5.
Tables
I can make a table with a header row and cells merged horizontally or vertically!
| C1 Heading | C2 Heading | C3 Heading |
|---|---|---|
| R2, C1 | R2, C2, also spanning R2, C3 | |
| R3, C1, also spanning R4, C1 | R3, C2 | R3, C3 |
| R4, C2 | R4, C3 | |
Images
I can insert an image with an absolute URL!
Or an image with a relative URL!
Forms
I can make forms! (Although, I don't know how to script them yet...)
Quotations & Citations
I might want an inline quotation, which according to an anonymous source [is] pretty dang helpful
.
Or I might want a blockquote for a multi-line quotation, like so:
A hot dog is a grilled, steamed, or boiled sausage served in the slit of a partially sliced bun. The term hot dog can also refer to the sausage itself. The sausage used is a wiener (Vienna sausage) or a frankfurter (Frankfurter Würstchen, also just called frank).
I can cite a work like War and Peace!
Code
I can add a code snippet!
for i=1, 5 do
print("Hello, World!")
end
You reached the bottom!