embed jquery in html page

embed jquery in html page

Hello there,

i need your help!
I´m trying to start a html/jquery page but it just doesnt work.
Attached you find the folder structure and the code of the page.

I just dont know what is wrong.

this is the code and according to the book i have her ("Apps mit HTML5 und CSS3") I should see a navigation bar in the footer with star-icons...
Plus it underlines every "data-role"-tag i write which I don´t think is right either.

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Testseite</title>
  5.     <meta http-equiv="content-type" content="text/html; charset=UTF-8" />

  6. <meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1">

  7. <link rel="stylesheet" href="/jquery.mobile-1.4.5.css" />
  8. <script src="/jquery-1.12.0.js"></script>
  9. <script src="/jquery.mobile-1.4.5.js"></script>
  10. <meta name="apple-mobile-web-app-capable" content="yes" />

  11. <link href="/styles.css" type="text/css" rel="stylesheet" />
  12.    
  13. </head>
  14. <body>
  15. <div data-role="page" id="startseite">

  16. <div data-role="navbar" data-theme="b">
  17. <ul>
  18. <li><a href="#menue" data-icon="star" data-transition="fade">MENUE</a></li>
  19. <li><a href="#anfahrt" data-icon="star" data-transition="fade">ANFAHRT</a></li>
  20. <li><a href="#kontakt" data-icon="star" data-transition="fade">KONTAKT</a></li>
  21. </ul>
  22. </div><!-- /navbar -->



  23. </div> <!-- /page -->
  24. </body>
  25. </html>
Please help me!! It´s probably only a little thing but i`ve spent hours already trying to figure it out.

Thank you :)
Pia