Booman Tribune

How'd boo do that? (An HTML Primer)

by superscalar
Sat Apr 30th, 2005 at 11:58:42 PM EST

If you have ever wondered how BooMan, susanhbu, or some of the other BooT's here manage to put together those beautiful Diaries, I have the answer. Well - I have part of the answer. Here is a short primer on the HTML tags and tag elements which are supported by the version of Scoop that is used to run the BooMan Tribune.

While I have tried to cover all of the HTML tags and tag elements that can be used to write both Diaries and Diary Comments here on BooMan Tribune, this is by no means either an exhaustive list of all HTML tags and tag elements, nor does this list necessarily correspond to that set of HTML tags and tag elements supported for all Scoop sites; or all versions of Scoop.

For example, while Daily Kos supports HTML tags like <STRIKE></STRIKE>, <SMALL></SMALL>, and <TABLE></TABLE>, these tags are not supported by BooMan Tribune. Based upon what I can find on the Scoop site, this is not because BooMan Tribune uses an older version of Scoop, but rather because BooMan Tribune's version of Scoop is newer.

I have placed quite a few comments in the HTML for this Diary in an attempt to provide even more examples of both what I am doing, and how I am doing it.

For instance, the Anchor example below is bracketed by two comments, one at the start of the example, and one at the end. If you view the source page for this Diary you will find:

<!-- BEGIN A - Anchor, Hyperlink -->

- and -

<!-- END A - Anchor, Hyperlink -->

Additionally, the entire Diary is bracketed by a beginning and ending comment tag:

<!-- BEGIN HTML PRIMER -->

- and -

<!-- END HTML PRIMER -->

So you could choose to simply view the Diary source, cut out the text between a beginning and ending comment tags, and save that text to a file.

If you have additional tips to add to this Diary, or you find mistakes, plus chime in. I will probably find errors and additions myself and just edit the Diary. While I have done quite a bit of HTML, work, I am in no way an expert. Fact is, unlike most 3GL languages, with HTML I am constantly looking things up. With HTML, there is always something new to learn. HTML is a page description language, not a programming language, plus, because the browsers are always evolving, there's just always something new.

Note:For those who may be new to HTML, it is not necessary to use the 'HTML Formatted' option to embed simple HTML tags in your Diaries or Comments. Simply select 'Auto Format' from the Drop Down List as you normally would, and insert the HTML tags as you would normal text. Scoop will parse out the HTML tags from the regular text, and generally it will 'do the right thing'.

The following links will take you directly to an example for that HTML tag or element. After reading that example you can then return to this point in the Diary simply by clicking on your browser's 'Back' button. Each example also contains a link with much more information on that particular HTML tag or element, as well as other element values for a given HTML tag.

Yes, I know there is no example for the 'CLASS' element. Two things here.

  1. The <BLOCKQUOTE></BLOCKQUOTE> tag is the same as <DIV CLASS="blockquote"></DIV> so using a DIV to create a block quote is analogous to shooting a fly with a shotgun:

    From the BooMan Tribune Style Sheet

    blockquote, .blockquote {
    color: #333333;
    border: 1px solid #fdbb00;
    background-color: #dddddd;
    padding: 5px 10px 5px 10px;
    margin: 5px 15px 5px 15px;
    }

  2. I am saving the 'CLASS' element for another day, may be able to do some cool stuff. But right now, too much coffee, and not enough sleep.

I HTH (hope this helps).

DIV - Document Division

<DIV [STYLE="Style"] [CLASS="Class"] [ALIGN="Alignment"]>
Document Section
</DIV>

Specifies a document division. The most often used type of DIV is a 'blockquote'.

Type:

<DIV>DIV EXAMPLE</DIV>

Result:

DIV EXAMPLE

Also see: DIV STYLE

A - Anchor, Hyperlink

<A HREF="Target" [NAME="Name"]>Anchor Text</A>

An Anchor, which is often reffered to as a 'link' or 'hyperlink' defines a word or other construct in the document which acts a link to a resource (e.g. another HTML file, or an image file, or an audio file), or another location in the current document.

Type:

<A href="http://www.boomantribune.com">ANCHOR EXAMPLE</A>

Result:

Also see: A NAME

DL - Definition List

<DL>
<DT>Term 1<DD>Definition 1
<DT>Term 2<DD>Definition 2
...
</DL>

Presents a list of terms, and corresponding definitions for those terms. Note that while HTML 3.2 defines the attribute element 'COMPACT', this element is deprecated in HTML 4.0. The element 'COMPACT' is not supported by Scoop.

Type:

<DL>
<DT>EXAMPLE TERM 1<DD>EXAMPLE DEFINITION 1
<DT>EXAMPLE TERM 2<DD>EXAMPLE DEFINITION 2
...
</DL>

Result:

EXAMPLE TERM 1
EXAMPLE DEFINITION 1
EXAMPLE TERM 2
EXAMPLE DEFINITION 2

IMG - Inline Image

<IMG SRC="URL" [ALT="String"]
[HEIGHT="Integer Height"] [WIDTH="Integer Width"]
[ALIGN="TOP | MIDDLE | BOTTOM | LEFT | RIGHT"] [BORDER="Integer Border Width"]
[HSPACE="Integer Horizontal Margin"] [VSPACE="Integer Vertical Margin"]>

Includes an inline image into the document. Note that the only value which is mandatory is 'SRC'. However and 'ALT' element is strongly recommended. Height and Width values are also recommended as including these values will result in a page which will display faster. By default, the positioning of the image, i.e. 'ALIGN', is set to the bottom relative to the current text line. A value for 'ALIGN' is not required. 'BORDER', 'HSPACE', and 'VSPACE' values all are zero by default. If a border, horizontal space, or vertical space is not required, there is no need to define these elements.

Type:

EXAMPLE IMAGE<img SRC="http://www.boomantribune.com/images/booman-frogmarch-logo-smaller.jpg" ALT="Booman Tribune" HEIGHT="175" WIDTH="175" ALIGN="MIDDLE" BORDER="2" HSPACE="10" VSPACE="10"">

Result:

EXAMPLE IMAGEBooman Tribune

TT - Teletype (Monospaced) Text

<TT>Monospaced Text</TT>

Display text in a monospaced font. The font used is typically that font which is selected as the default monospaced font in your browser preferences.

Type:

<TT>TT EXAMPLE</TT>

Result:

TT EXAMPLE

OL - Ordered (Numbered) List

<OL>
<LI> List Item 1
<LI> List Item 2
...
</OL>

Display information in the form of an ordered (numbered) list.

Type:

<OL>
<LI>EXAMPLE ITEM 1
<LI>EXAMPLE ITEM 2
</OL>

Result:

  1. EXAMPLE ITEM 1
  2. EXAMPLE ITEM 2

CITE - Citations

<CITE>Citation Text</CITE>

Display a citation or reference to other sources, such as a book title. Typically a cite is displayed in italics, though some browsers may display cites differently. For instance, some browsers use underlining or quotes around the citation.

Type:

<CITE>EXAMPLE CITE</CITE>

Result:

EXAMPLE CITE

CODE - Program Code

<CODE>Program Code Text</CODE>

Display program code. Typically a browser will display all text between 'CODE' tags in a monospaced font. In this way a 'CODE' tag behaves much like a 'TT' tag.

Type:

<CODE>EXAMPLE CODE</CODE>

Result:

EXAMPLE CODE

I - Italicized Text

<I>Italicized Text</I>

Display text in italics.

Type:

<I>EXAMPLE ITALIC TEXT </I>

Result:

EXAMPLE ITALIC TEXT

UL - Unnumbered List

<UL>
<LI> List Item 1
<LI> List Item 2
...
</UL>

Display information in a list form (without numbering the items). Note that while HTML 3.2 defines the elements 'TYPE', and 'COMPACT', these elements are deprecated in HTML 4.0, and are not not supported by Scoop. All items will default to TYPE="Circle".

Type:

<UL>
<LI>EXAMPLE ITEM 1
<LI>EXAMPLE ITEM 2
</UL>

Result:

  • EXAMPLE ITEM 1
  • EXAMPLE ITEM 2

EM - Emphasized Text

<EM>Emphasized Text</EM>

Display emphasized text. The definition of what emphasis means may vary among browsers and browser platforms.

Type:

<EM>EXAMPLE EMPHASIS</EM>

Result:

EXAMPLE EMPHASIS

BR - Line Break

<BR>

Forces a line break (but not paragraph break) within a given block of text.

Type:

This is text before two line breaks.<BR><BR>This is text after two line breaks.

Result:

This is text before two line breaks.

This is text after two line breaks.

STRONG - Strong Emphasis

<STRONG>Strong Text</STRONG>

Displays strongly emphasized text. The definition of what strongly emphasized means may vary among browsers and browser platforms.

Type:

<STRONG>EXAMPLE STRONG TEXT</STRONG>

Result:

EXAMPLE STRONG TEXT

BLOCKQUOTE - Long Quotation

<BLOCKQUOTE> Blockquote Text </BLOCKQUOTE>

Displays a long, often copyrighted, quotation to be rendered as a block of its own (in contrast to shorter quotations embedded into text paragraphs).

Type:

<BLOCKQUOTE>EXAMPLE BLOCKQUOTE</BLOCKQUOTE>

Result:

EXAMPLE BLOCKQUOTE

P - Normal Paragraph

<P>Paragraph Text</P>

Displays a normal paragraph. Note that the close paragraph tag e.g. </P>, will insert a line feed into the document

Type:

<P>EXAMPLE PARAGRAPH TEXT</P>

Result:

EXAMPLE PARAGRAPH TEXT

B - Bold Text

<B>Bold Text</B>

Display bold text. Bold version of the current font face is used.

Type:

<B>EXAMPLE BOLD TEXT</B>

Result:

EXAMPLE BOLD TEXT

NAME - A Name Element

NAME="Name"

Although the Anchor tag is normally used to link to a target which corresponds to another document, the Anchor tag may also be used to link to a specified point in the same document. For long Diaries, or Diaries where the author may want to use, say, a table of contents, using the NAME element of the Anchor tag allows the author to define such an Anchor.

Example:

Table of Contents
<P><A href="#section1">Introduction</A></P>
<P><A href="#section2">Some background</A></P>
<P><A href="#section2.1">On a more personal note</A></P>
...the rest of the table of contents...
...the document body... <P><A name="section1">Introduction</A></P>
...section 1...
<P><A name="section2">Some background</A></P>
...section 2...
<P><A name="section2.1">On a more personal note</A></P>
...section 2.1...

The top of this Diary defines the name 'TOP'.

<A NAME="TOP">

Type:

Click <A HREF="#TOP">HERE</A> to jump to the top of the document.<BR> Use your browser's "Back' button to jump back here.

Result:

Click HERE to jump to the top of the document.
Use your browser's "Back' button to jump back here.

STYLE - DIV Style Element

STYLE="Name1:Value1; ... NameN:ValueN;"

Complete Diaries or sections of Diaries or Comments can be enclosed within a DIV tag. Because the STYLE element can be used in a DIV tag, that portion of text will be formatted to display using that 'name:value;" data which is included in the STYLE element.

Because this topic requires some knowledge of inline styles, cascading style sheets, and because of the sheer number of possible 'name:value;' pairs, I have left most of how this is done as an excercise for the reader.

The best way to find information about what a 'name:value;' pair does, the possible values for a given 'name:value;' pair, etc, is by searching Google. For example, search HTML font-size.

I have included a modified 'STYLE' element name values which define the DIV STYLE I have used in this Diary. The following changes were made such that the DIV would display differently within its enclosure.

Old 'font-size' Value 'font-size:12px;'

-- New 'font-size' Value 'font-size:18px;'

Old 'font-weight' Value 'font-weight:normal;'

-- New 'font-weight' Value 'font-weight:normal;'

Old 'background-color' Value 'background-color:#fda;'

-- New 'background-color' Value 'background-color:blue;'

Old 'border-color' Value 'border-color:#aaa;'

-- New 'border-color' Value 'border-color:red;'

Old 'border-width' Value 'border-width:1px;' (all)

-- New 'border-width' Value 'border-width:1px 2px 3px 4px;' (top, right, bottom, left)

Old 'padding' Value 'padding: 5px 10px 5px 10px;' (top, right, bottom, left)

-- New 'padding' Value 'padding:20px;' (all)

Type:

<DIV STYLE="width:80%; font-family:helvetica,arial,sans-serif; font-size:18px; font-face:italic; font-weight:bold; background-color:blue; border-width:1px 2px 3px 4px; border-style:solid; border-color:red; padding:20px; margin: 5px 15px 5px 15px;">BLUE TEXT BOX, RED BORDER</DIV>

Result:

BLUE TEXT BOX, RED BORDER



Display:
i feel like I owe you $300 for a crash course in HTML.  Thanks for this.
by BooMan on Sun May 1st, 2005 at 12:13:34 AM EST
I will take you up on the masculine form.
Thanks for this.
My pleasure, it was fun, in a weird sadistic sort of way. :-[0

If the terriers and bariffs are torn down, this economy will grow - G. Bush
by superscalar on Sun May 1st, 2005 at 12:18:08 AM EST
[ Parent ]
who uses Firefox, with BBCode(dKos mod)

So I can  right click,

and do just about

anything

my little heart desires!

And my head don't hurt.

It's too wet to work today. Let's buy a DVD

by emmasnacker on Sun May 1st, 2005 at 12:34:50 AM EST

Firefox on Windows, that's cool. Hmmm, ok, a super-duper secret message, only visible with the decoder ring. ;-) Hint:Mac OS 10.3, Safari 1.1

George Bush sucks, but I
BooMan Tribune



If the terriers and bariffs are torn down, this economy will grow - G. Bush
by superscalar on Sun May 1st, 2005 at 08:11:23 AM EST
[ Parent ]
Since I'm using Safari, I had to open Explorer (oh, the horror!*) and check it out there.

How'd you do that? And will it still work with Tiger? I was in the tub Friday when FedEx came and they did not leave it on the porch. Grr. Grr. I know, I've never before bought a point zero version  of software, and normally I would have waited, but I had to order a new battery for my laptop anyway and I get a big "education" discount from Apple, so I thought, wth, it'll be fun to have a new toy.

[*Actually, I just had Explorer open a little while ago, since I was updating my web page for the upcoming summer semester and I try to do the polite thing and make sure the poor, benighted IE users are seeing it the way they should . . . . I draw the line at Netscape, though, since they went over to the dark side (AOL). Netscape users are on their own.]

There is nothing easier than lopping off heads and nothing harder than developing ideas. - Fyodor Dostoevsky

by Janet Strange (jstrange1925athotmaildotcom) on Sun May 1st, 2005 at 10:10:03 AM EST
[ Parent ]
How'd you do that? And will it still work with Tiger?

Yes, and much more is coming. What is happening here is Safari already supports the 'text-shadow' and 'z-index' attributes (and some others). These attributes were originally in CSS 2.1 but have now been put off for CSS 3. Mozilla and IE don't even fully support CSS2 yet. Because the Quartz rendering engine, which is part of Mac OS X, is built to support both opacity and drop shadows, supporting these properties in the browser was relatively simple.

I don't ever see this being supported on Mac OS IE Explorer, and not for a while, if ever, on Windows. So, most of this is just invisible on Mac OS Explorer and all of Windows, 'cause all browsers simply ignore attributes they do not support.



If the terriers and bariffs are torn down, this economy will grow - G. Bush
by superscalar on Sun May 1st, 2005 at 10:39:32 AM EST
[ Parent ]

If you can see this,

you're using

Safari


(Makes sense if you are.)

There is nothing easier than lopping off heads and nothing harder than developing ideas. - Fyodor Dostoevsky

by Janet Strange (jstrange1925athotmaildotcom) on Sun May 1st, 2005 at 12:02:50 PM EST
[ Parent ]
As quickly as you can ... snatch the pebble from my hand.

Time for you to leave grasshoppa. :-)

If the terriers and bariffs are torn down, this economy will grow - G. Bush
by superscalar on Sun May 1st, 2005 at 12:35:38 PM EST
[ Parent ]
Cool... I was just looking at all the little symbols underneath the comments box yesterday, wondering..."what is all that stuff?"

Some is of course familiar, but as I avoid HTML at all costs usually (wysiwyg all the way, for me!), the rest just seemed like... well, who knows.

Thanks for explaining it all so well!

Human rights, politics, social issues and food!
Human Beams Magazine

by Nanette (nanette at humanbeams dot com) on Sun May 1st, 2005 at 07:46:05 AM EST
 A million thanks!

"Before you knew the word 'dream' and the word 'fire' you dreamed of fires" Lisel Mueller
by vida on Sun May 1st, 2005 at 07:46:17 AM EST
This is what I'd most like to know how to do. Especially to be able to put a smallish pic on one side and text on the other. When I do this with Dreamweaver or Word, I use columns, but I can't figure out the way to do the same thing with Scoop. I have tried viewing the source code when I see columns - I do see them, so it must be possible - but cutting and pasting the source, and inserting my own image tag and text, doesn't seem to work for me. I can get a word, or a line, next to a pic, but not a block of text the same size (i.e. length) as the pic.

There is nothing easier than lopping off heads and nothing harder than developing ideas. - Fyodor Dostoevsky
by Janet Strange (jstrange1925athotmaildotcom) on Sun May 1st, 2005 at 08:19:09 AM EST

A column in Word is basically the same as a Table in HTML. As I wrote in my Diary, while Daily Kos supports Tables e.g.

<table><tr><td>Col 1></td<td>Col 2</td></tr></table>

BooMan Tribune does not. In trying to find out why, this is all I was able to find. Remove the use of tables

It is possible to create columns in HTML without tables, using unnumbered lists ('UL') i.e. <ul><li></li<</ul>, but this requires either the ability to access your own style sheet, or the ability to embed an inline 'STYLE' element to the 'UL' tag e.g.

<ul style="display: inline;list-style-type: none;padding-right: 20px;"><li>Col 1</li><li>Col 2</li></ul>

Scoop rejects any 'STYLE' element in the 'UL' tag - I tried.

Depending upon what you are trying to do, you may get away with just futzing with using an 'ALIGN' element in the 'IMG' tag, and working with an set of embedded 'DIV''s and 'P''s. Tables make this a lot easier though.



If the terriers and bariffs are torn down, this economy will grow - G. Bush
by superscalar on Sun May 1st, 2005 at 09:00:33 AM EST
[ Parent ]
I guess I'll just have to keep playing around to see if I can make it work somehow. Preview is a wonderful thing.

There is nothing easier than lopping off heads and nothing harder than developing ideas. - Fyodor Dostoevsky
by Janet Strange (jstrange1925athotmaildotcom) on Sun May 1st, 2005 at 09:59:01 AM EST
[ Parent ]
For future reference.

John McCain - Less Jobs More War
by ask on Sun May 1st, 2005 at 08:48:12 AM EST

I neglected to note an important point in my Diary. HTML parsers are not case-sensitive.

<BLOCKQUOTE>Blockquote Text</BLOCKQUOTE>

-- is equal to --

<blockquote>Blockquote Text</blockquote>

-- is equal to --

< Blockquote>Blockquote Text</blockQuote>

I use lowercase when writing HTML. I only used uppercase in this Diary to make the tags and elements stand out. As soon as I finish up some of the final tidbits I am working on for this Diary, I will include this point.



If the terriers and bariffs are torn down, this economy will grow - G. Bush
by superscalar on Sun May 1st, 2005 at 09:27:36 AM EST
When I think of the flies I have killed with a shot gun, it makes my head spin.

Not sure I like that flesh colour you used for block quotes. It's so fleshy.

I need to work on my lists, being a list-lover.

To thine own self be true. W.S.

by sybil on Sun May 1st, 2005 at 10:17:40 AM EST
Not sure I like that flesh colour you used for block quotes

This is one of the colors that both BooMan and Susan use. Having asked 'How'd boo do that?' I felt compelled to replicate what it was they did.

Give it time, it will grow on you ;-[0

If the terriers and bariffs are torn down, this economy will grow - G. Bush
by superscalar on Sun May 1st, 2005 at 10:43:06 AM EST
[ Parent ]
The only thing I can do over at the orange site with ease that I can't do here (and it drives me batty) is use this code:

< a href="address" target="_blank" >name< /a >

(without spaces)

to open the link (or in my case, the picture) into a new window. Site programming doesn't allow the "blank".

I don't understand why I can't do this (nor why I'm obsessed with having the ability) unless it's a bandwidth or odd programming issue. I like being able to click newly opened windows closed rather than paging back.

I think it's from all those early days in C&J where going back and forth and replying could lose you all the mojo you had set before clicking "rate all". <g>

Just a neat html habit I wish I could continue over here.

Thanks for the excellent primer - headspinning. And hotlisted.

Things to do in an elevator: Stare, grinning at another passenger for a while, then announce "I have new socks on".

by mentaldebris on Sun May 1st, 2005 at 08:17:11 PM EST


Display:
Go to: [ Booman Tribune Homepage : Top of page : Top of comments ]
Menu
Login
. Make a new account
. Reset password





Find textbooks at Alibris!

NOTE: Overstock bests Amazon's prices and is "blue."

THE BOOKS WITH "BUZZ":
______________

Learn the real story behind the CIA's War on Terror:

The Dark Side: The Inside Story of How the War on Terror Turned Into a War on American Ideals
by Jane Mayer

Read Barack Obama's vision for America:

The Audacity of Hope: Thoughts on Reclaiming the American Dream
by Barack Obama

DaveW recommends:

I Am a Strange Loop
by Douglas Hofstadter

Need some laughs?

I Am America (and So Can You!)
by Stephen Colbert

rae recommends:

Dark Ages America: The Final Phase of Empire
by Morris Berman.

On BooMan’s shelf:

Team of Rivals: The Political Genius of Abraham Lincoln
by Doris Kearns Goodwin

This looks interesting:

Adventure Divas
by Holly Morris

Here’s a good one from
Elizabeth Gilbert:

Eat Pray Love
by Elizabeth Gilbert

"Crash" * Best Motion Picture, Academy Awards * Only $11.79 at Overstock * 2006 SAG Winner, Best Ensemble

Check out
Powell's new section:
NEW FAVORITES

Selected new arrivals at 30% off

Recommended by Indianadem and ejmw:
The Conscience of a Liberal
by Paul Wellstone

From northcountry’s bookshelf:

The New Golden Age:
The Coming Revolution Against
Political Corruption and Economic Chaos
by Ravi Batra

A novel about contractors in Iraq from the woman that runs The Spy That Billed Me:

Outsourced: A Novel
from RJ Hillhouse.


SOTW-120x90
Download Sleeper Cell on iTunes (Better than "24") Download Weeds on iTunes (Hilarious 1/2-hour adult comedy starring Mary-Louise Parker) Download Late Nite with Conan O'Brien on iTunes
John Belushi - SNL
Download South Park on iTunes
Verve Vault

James Hunter - People Gonna Talk:
James Hunter - People Gonna Talk
icon


Great Deals
----- * ^ * -----

Find mystery novels by Nancy Pickard ("Kansas")



Challenging Empire: How People, Governments, and the UN Defy US Power by Phyllis Bennis (interviewed on DN!)


Featured by Keith Olbermann, New (Powell's Sale): Rogue State: A Guide to the World's Only Superpower by William Blum (whose other books merit serious consideration)


"Explosive" State of War: The Secret History of the CIA and the Bush Administration
by James Risen


The book the CIA doesn't want you to read: Jawbreaker: The Attack on Bin Laden and Al Qaeda: A Personal Account by the CIA's Key Field Commander
Larry Johnson's review


BT's all-time best seller:

PERMACULTURE:
A Designers' Manual

$79.95 * Sale: $59.95


Unequal Sisters: A Multicultural Reader in U.S. Women's History (Third Edition)


The Undercover Economist: Exposing Why the Rich Are Rich, the Poor Are Poor And Why You Can Never Buy a Decent Used Car!


The Worst Hard Time: The Untold Story of Those Who Survived the Great American Dust Bowl
by Timothy Egan


Green Press Initiative
----- * ^ * -----


Journalistas: 100 Years of the Best Writing and Reporting by Women Journalists by Eleanor Mills * NYT review


Bury Me Standing: the Gypsies & Their Journey


1491: New Revelations of the Americas before Columbus



Brokeback Mountain
by Annie Proulx
----- * ^ * -----
Check out Powell's
"At The Movies"


Imperial Ambitions: Conversations on the Post-9/11 World by Noam Chomsky (Power & Terror: Post 9-11 Talks)


The Price of Privilege:

How Parental Pressure and
Material Advantage Are Creating a Generation of
Disconnected and Unhappy Kids

by Madeline Levine


Save 35-70% on
name brand clothing,
footwear, and outdoor gear
at SierraTradingPost.com

:





We listened to PEN American Center's "State of Emergency" and found 1940s books by Curzio Malaparte only at Alibris. (Selection (MP3) excerpted from "The Skin.")

Alibris - Books You Thought You'd Never Find
Banned Books * Are you a fan of Film Noir, Art House, Documentaries or Hong Kong Action? * Searching for a long-lost children's book or a first printing of Miles Davis' Kind of Blue on vinyl? Find it at Alibris!

:
:
www.Patagonia.com


Listed on BlogShares

© 2009 Booman Tribune