Switch to full style
HTML code examples
Post a reply

usage of <q> and <blockquote> to add quotes to your HTML

Tue Dec 13, 2011 11:12 pm

Adding quote to your text page , here is an example using two different tags , <q> and <blockquote>

Code:
<html>
<
head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>usage of blockquote/q</title>
</
head>

<
body>
  
  
<h2>Reviews</h2>
  <p>I didnt like this movie , it is just waste of time. duplication of other movies.</p>

  <blockquote cite="http://www.codemiles.com">
    a duplicated idea!.
     a duplicated idea! 
      a duplicated idea
! 
  
</blockquote>
   <q>
   <p>it is a big depression for actors involved in this movie.</p>
  </q>

</
body>
</
html>
 




Post a reply
  Related Posts  to : usage of <q> and <blockquote> to add quotes to your HTML
 del html tag usage     -  
 dfn html tag usage     -  
 Usage of xmp html tag     -  
 displaying double quotes in ASP     -  
 Add double quotes to text dynamically, on page load     -  
 dd tag usage     -  
 tt usage example     -  
 Usage of UL tag     -  
 Usage of sub tag     -  
 dir tag usage     -