Tribute Page Project Feedback

Hi I would love some feedback on my tribute page:


I also have a specific problem I am trying to find a fix for.

I would like my lists to be centered. I am able to do this but my bullet points stay far to the left. I want it to appear how it does not but just centered in the middle of the page.

Any feedback is helpful. I have been coding for about a month but this is my first time sharing anything.

Nice start. I say that because it would be great to have a paragraph telling us a little bio about David Foster Wallace.

As for the code issue. There was a lesson on Bootstrap I believe that had the grid system (Use the Bootstrap Grid to Put Elements Side By Side). More info can be found on the w3c site as well:

http://www.w3schools.com/bootstrap/bootstrap_grid_system.asp

Change your col from 4 to 12 and include other columns on either side. Don’t forget the “row”

<div class="text-left">

   <div class="row"> 
      <div class="col-xs-4"></div>  

  <div class="col-xs-4">
    <ul>
      <ul>Novels</ul>
   </ul>
 </div>

   <div class="col-xs-12"></div> 
     </div>

</div>

Use Bootstrap container and grid system. You can also use a div with class=“text-center” around your list.