Dont get what your wanting? are you wanting to display a random quote on your page? or a quote from a post??
<blockquote> text </blockquote>
?
Thread Starter
sketch
(@sketch)
ok some expl.
here is my txt for example:
Found this blog while surfing some feeds recently. David Weiss gives us a little virtual tour inside the MAC Business Unit. Watch the tons of computers they have stocked there!
“blablabblablabblablabblablabblablabblablabblablabbla blablabblablabblablabblablabblablab”
And some more of my ext here
Which code should i use to make the blablab text indend and be between brackets? is it simpl <quote> or something else?
Thread Starter
sketch
(@sketch)
text
seems to work but are there others of this kind or a list somewhere with all this kind of codes?
It’s usually blockquote but styled in different ways.
In the css:
blockquote {
color:#ff0000;
font-style:italic;
}
will give that appearance.
You can also have different styles:
blockquote.green {
color:#00ff00;
}
which would be used
<blockquote class="green">
so it’s all in the css.