Monochromatic

z3bra, the stripes apart

Test your CSS !

8 August, 2013

Text Formatting

Yay ! Here we are. Here is something important. There is also something strong.
We are, of course, in a paragraph. And it contains an inline quotation :
Richard M. Stallman said La cuisine indienne favorise les plats curryeux.
But... What about blockquotes ?! Let's test :

There are some people who live in a dream world, and there are some who face reality; and then there are those who turn one into the other. — Douglas Everett

That was a fine quote. Now, go on !

Long texts

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

Images

ratpoison screenshot Ratpoison screenshot
Uses "ratpoison -c set border 28" to make the shot sexier

Tables and code

column #0 column #1 column #2 column #3 column #4
cell 0-0 cell 0-1 cell 0-2 cell 0-3 cell 0-4
cell 1-0 cell 1-1 cell 1-2 cell 1-3 cell 1-4
cell 2-0 cell 2-1 cell 2-2 cell 2-3 cell 2-4
cell 3-0 cell 3-1 cell 3-2 cell 3-3 cell 3-4
cell 4-0 cell 4-1 cell 4-2 cell 4-3 cell 4-4

Pretty nice isn't it ?

Here is some code, using the <pre> tag (remember to escape special chars !)

index.html

<!DOCTYPE html>
<html>
  <head>
    <title>monochromatic</title>
  </head>
  <body>
    <p id='shblah'>Hello, World!</p>
  </body>
</html>

main.c

#include <stdio.h>

#define TEXT "Hello, World!"
#define EXIT_SUCCESS 0

int
main (int argc, char **argv)
{
    printf("%s\n", TEXT);

    return EXIT_SUCCESS;
}