Are you talking about Commenting or Quoting? <!-- Commented text goes here --> <blockquote> Quoted text goes here </blockquote> Code (markup): Hope that helps.
Or, are you talking about wanting to display source code on your page? If that's it, there's the <code> element. It's an inline element. You probably will want to wrap it in a <pre> element, which is block. For an example, view Centering Inline Elements with CSS for an example of displayed source code. View the source for how it's done. cheers, gary
Are you talking about quotation?if so,for coding that you could use <q>.The <q> tag defines the start of a short quotation,which ends by </q>.