This is an example page, using alternative fonts loaded from Google's fonts repository.


@import url(https://fonts.googleapis.com/css?family=Orbitron); @import url(https://fonts.googleapis.com/css?family=Indie+Flower); @import url(https://fonts.googleapis.com/css?family=Source+Code+Pro); /*@import url(https://fonts.googleapis.com/css?family=Cutive+Mono);*/ @import url(https://fonts.googleapis.com/css?family=Great+Vibes);

pre, tt {font-family:"Source Code Pro" ;font-size:66%;} .handwritten { font-family: "Indie Flower"; font-size:110%;} .pagename, h2 { font-family: "Orbitron";} h3,h4 { font-family:"Great Vibes"; color:rgb(232, 48, 79);}

Header in Orbitorn font#

Title#

Sub-Title#

This is just some sample in the default template font. Don’t even bother reading it; you will just waste your time. Why do you keep reading? Do I have to use Lorem Ipsum to stop you? OK, here goes: Lorem ipsum dolor sit amet, consectetur adipi sicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Still reading? Gosh, you’re impossible. I’ll stop here to spare you.

This is just some %%handwritten "Indie Flower" font sample. Don’t even bother reading it; you will just waste your time. Why do you keep reading? Do I have to use Lorem Ipsum to stop you? OK, here goes: Lorem ipsum dolor sit amet, consectetur adipi sicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Still reading? Gosh, you’re impossible. I’ll stop here to spare you.

/**
 * the fibonacci series implemented as an Iterable.
 */
public final class Fibonacci implements Iterable<Integer> {
  /** the next and previous members of the series. */
  private int a = 1, b = 1;  //a = 0, b = 1

  public Iterator<Integer> iterator() {
    return new Iterator<Integer>() {
      /** the series is infinite. */
      public boolean hasNext() { return true; }
      public Integer next() {
        int tmp = a;
        a += b;
        b = tmp;
        return a;
      }
      public void remove() { throw new UnsupportedOperationException(); }
    };
  }

Category.Add CSS Style, Category.Font Style