Ok so I am very new to CSS and HTML. Basically I have the below code:
<html>
<head>
<style type="text/css">
p
{
font-family:Calibri, Arial, Helvetica, sans-serif;
}
q
{
color:#698B22;
}
</style>
</head>
<body>
<p>
Foo Bar Foo bar.
<br /><br />
Foo <a href="http://www.stackoverflow.com/">Bar</a> Foo Bar.
<br /><br />
Foo <a href="http://www.stackoverflow.com/">Bar <q>Foo</q> Bar</a> Foo Bar.
<br /><br />
</p>
</body>
</html>
When I view this in my Browser, it looks like so:
What I want to know is, why, on the third line, is there quotes around the word Foo
inside the link (in the most recent versions of Chrome and Firefox, this is not present in IE9)? Also, how do I get shot of the quotes?
Thanks