Using Head First and I'm confused...

Using Head First and I'm confused...

Furry Friend Campaigns
Ok so I bought head first a couple of weeks ago and just got around to using it. and I think i typed something wrong because the code doesn't work.
Here is the code to the Index.html
  1. <html>
  2. <head>
  3. <title>Furry Friend Campaigns</title>
  4. <link rel="stylesheet" type="text/css" 

  5. href="styles/my_style.css">
  6. </head>
  7. <body>
  8. <div id="#clickMe">Show me the furry friend of the 

  9. day</div>
  10. <div id="#picframe"><img 

  11. src="images/furry_friend.jpg"></div>
  12. <script src="scripts/jquery-1.11.3.min.js"></script>
  13. <script>
  14. $(document).ready(function(){
  15. $("#clickMe").click(function() {

  16. $("img").fadeIn(1000);
  17. $("#picframe").slideToggle("slow");

  18. });

  19. });

  20. </script>

  21. </body>

  22. </html>

Here is the code to the Style sheet

  1. #clickMe {
  2. background:#D8B36E
  3. Padding:20px;
  4. text-align: center:
  5. width: 205px;
  6. display:block;
  7. border: 2px solid #FFF;

  8. }

  9. #picframe {
  10. background:#D8B36E
  11. Padding:20px;
  12. text-align: center:
  13. width: 205px;
  14. display:block;
  15. border: 2px solid #FFF;

  16. }