--- Wade <[EMAIL PROTECTED]> wrote:
> This is the code:
> 
>     print 'Kitten Application<br /><br /> <font size="4"
> face="Georgia" 
>             color="black"><b><i><center>';
> 
> line 74    print 'Would you like to own a kitten from A Cat's
> Desire?<br 
> /><br />';
> 
>     print 'If so, this is the place to start! <br /><br />';

Speaking of CSS from my last reply, that whole block could be written
more efficiently as such:

print '<h2>Kitten Application</h2>';
print '<p>Would you like to own a kitten from A Cat\'s Desire?</p>';
print '<p>If so, this is the place to start!</p>';

// CSS
body { font-family: Georgia, "Times New Roman", serif; }
h2, p { color: #000; }
p { text-align: center; font-style: italic; }

:-)

-Bob


                
__________________________________ 
Do you Yahoo!? 
Make Yahoo! your home page 
http://www.yahoo.com/r/hs


Community email addresses:
  Post message: [email protected]
  Subscribe:    [EMAIL PROTECTED]
  Unsubscribe:  [EMAIL PROTECTED]
  List owner:   [EMAIL PROTECTED]

Shortcut URL to this page:
  http://groups.yahoo.com/group/php-list 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/php-list/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to