Test Page

Here is a paragraph.

Lists

  1. Make stuff
  2. Learn stuff
  3. Make cooler stuff

Local Image Using Relative URL

Local image liked to Hacker News

Description List

absolute url
Always points to same location. Ex. https://example.com/files/pdfs/pdf-read.pdf
relative url
Don’t need to include the full url/filepath, depending on where file linking to is located in relation to file linking from.
Example: pdf-list.html is in folder /example/files/pdfs. Relative link calling pdf-read.pdf in same folder would be: href=pdf-read.pdf, not href=example/files/pdfs/pdf-read.pdf

Citations

Citations can be done with blockqoutes. This paragraph is cited to MDN Docs. Note that it is tabbed.

They can also be cited inline. This sentence is cited to the W3C manual. Note the quotation marks. Of course, unless you view the page source, mod your css, or write a script, you won't see the citations.

Abbreviation

Here is an abbreviation: tfw. Hover your mouse over it to read expand it.

Subscript & Superscript

Subscript: C8H10N4O2
Superscript: November 24th

Marking Code


        Scanner keyboard = new Scanner(System.in);
        System.out.println("enter an integer");
        int myint = keyboard.nextInt();
    

//User keyboard input for myInt variable:

3

        System.out.println("This is the number you entered: " + myInt);
    
This is the number you entered: 3

Date & Time

Lots of ways to mark dates and times. This is marked . This is marked . View page src to verify.