Can someone tell me what i'm doing wrong, please? The error I get when I go to my website is as follows:
Parse error: syntax error, unexpected '<' in /home/content/52/9623852/html/index.php on line 19
Here's the coding for the index.php:
<?php
/**
* The main template file.
*/
get_header(); ?>
    <div id="primary">
    <div style="border: 2px solid #333;float: left;width: 875px;margin-top: 10px;margin-left: 15px; margin-bottom:10px;background: #ccc url(<?php bloginfo('template_url');?>/images/bgcontent.jpg) repeat-y;">
        <div id="content">
        <?php if ( have_posts() ) : ?>
            <?php twentyeleven_content_nav( 'nav-above' ); ?>
            <?php /* Start the Loop */ ?>
            <?php while ( have_posts() ) : the_post(); ?>
                <?php get_template_part( 'content', get_post_format() ); ?>
            <?php endwhile; ?>
            <?php twentyeleven_content_nav( 'nav-below' ); ?>
        <?php else : ?>
            <article id="post-0" class="post no-results not-found">
                <header class="entry-header">
                    <h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyeleven' ); ?></h1>
                </header><!-- .entry-header -->
                <div class="entry-content">
                    <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyeleven' ); ?></p>
                    <?php get_search_form(); ?>
                </div><!-- .entry-content -->
            </article><!-- #post-0 -->
        <?php endif; ?>
        </div><!-- #content -->
        <?php get_sidebar(); ?>
        </div>
    </div><!-- #primary -->
<?php get_footer(); ?>
 
     
    