What is the html code for a quote?
Posted on February 5th, 2010 by admin
I need the html code for a quote:
"Freedom is the freedom to say that two plus two make four. If that is granted, all else follows."
it is from 1984, by George Orwell. I need the code for a language assignment that is due the very first day of school.
Hi
All the HTML numbers are available on:
http://www.ascii.cl/htmlcodes.htm
Regards
G
February 5th, 2010 at 4:31 pm
Hi
All the HTML numbers are available on:
http://www.ascii.cl/htmlcodes.htm
Regards
G
References :
February 5th, 2010 at 4:58 pm
You can use
<q> Quote this </q> To put a quotes around something.
You can aslo use "
References :
February 5th, 2010 at 5:21 pm
cite tag
http://www.quackit.com/html/tags/html_cite_tag.cfm
According to <cite title="HTML & XHTML: The Definitive Guide. Published by O’Reilly Media, Inc.; fifth edition (August 1, 2002)">Chuck Musciano and Bill Kennedy</cite>, the HTML cite tag actually exists!
References :
February 5th, 2010 at 5:43 pm
The best way to do this is to use the <q> or <blockquote> tags. Use <q> if it’s less than one line.
Alternatively, you could use the special html entities & #8220; and & #8221; for left and right curling double quote marks.
Edit: entities were automatically converted to double quotes. Delete the space in them to use them.
References :
http://www.w3schools.com/tags/tag_q.asp
http://www.w3schools.com/TAGS/tag_blockquote.asp
http://www.dwheeler.com/essays/quotes-in-html.html
February 5th, 2010 at 6:01 pm
This is a simple code. In this only your text will come not any colour or background.
<html>
<body>
"Freedom is the freedom to say that two plus two make four. If that is granted, all else follows."
</body>
</html>
In this I have added font and background colour.
<html>
<body bgcolor="blue">
<font color="green", size="6">
"Freedom is the freedom to say that two plus two make four. If that is granted, all else follows."
</font>
</body>
</html>
U can change colour as your wish.
I hope U will like it.
References :