External text and external css problems in as 3!

I have an external .txt document and an external .css document. Everything seems to be working, but for some reason it is not taking all of the styles from the styles document and applying them to my text. The <a> tag is working and the styles that along with that. But the <p> tag is not working nor is it taking any of the styles from it.

css code:
a
{
font-size: 36px;
color: #CC0000;
text-decoration:none;
}

a:hover
{
text-decoration:underline;
}

p
{
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 36px;
color:#0000FF;
}

.title
{
font-size: 24px;
color:#FF9933
}

txt doc:
<p class=‘title’>Reservations</p><p>To make an online reservation, click on the restaurant of your choosing.</p><a href =“http/www.google.com”>google</a><p>To make a reservation at B- NYC please call 212.674.8300.C- Atlantic City accepts limited dinner reservations. Please call 609.674.8300.br><br><br><br><br><br><br><br>The following restaurants seat guests on a first-come, first-served basis:<b>C-Restaurant and Martini Bar, C-Mid-town and <b>Jacks</b>.</p>

If anyone knows why this might be happening please let me know.

Thanks!!!