- Evey
- Who are you?
- Guy called “V”
- Who? Who is but the form following the function of what and what I am is a man in a mask.
- Evey
- Well I can see that.
- Guy called “V”
- Of course you can. I’m not questioning your powers of observation I’m merely remarking upon the paradox of asking a masked man who he is.
- Evey
- Oh. Right.
A quote from V for Vendetta, the movie.
More about this photo at its Flickr page.




How to markup a conversation?
I was searching the web today to find out how to markup a conversation/dialog, but there seems to be no definitive solution — only “HTML5 dialog” references. This is what I came up with so far (by following Jon Tan’s suggestion).
Is this the way to go? Here’s the markup and the CSS:
<dt class="dialog">Manuel</dt>
<dd class="dialog">Bla bla bla?</dd>
<dt class="dialog">Lazyweb</dt>
<dd class="dialog">Nom nom nom!</dd>
<dt class="dialog">Manuel</dt>
<dd class="dialog">Tweet tweet tweet?</dd>
<dt class="dialog">Lazyweb</dt>
<dd class="dialog">Me me me!</dd>
</dl>
color:#666;
margin-left:3em;
}
dt.dialog {
color:#666;
margin-left:0;
font-weight:bold;
}
dd.dialog {
color:#666;
margin-left:1em;
font-style:italic;
margin-bottom:.4em;
}