Strange question mark icons in navbar
I see strange question mark icons in navbar:
Here is my full source code:
- <!DOCTYPE html>
- <html>
- <head>
- <title>Test Page</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta charset="utf-8">
- <link rel="stylesheet" href="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
- <script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
- <script src="//code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
- </head>
- <body>
- <div data-role="page">
- <div data-role="navbar">
- <ul>
- <li><a href="#" class="ui-btn-active">One</a></li>
- <li><a href="#">Two</a></li>
- <li><a href="#">Three</a></li>
- </ul>
- </div>
- </div>
- </body>
- </html>
I tried that with and without the <meta charset="utf-8"> and it's the same either way. I am using Chrome 61.0.3163.100 (Official Build) (64-bit). This is a bizarre and troubling problem, especially when I'm only using a boilerplate example right off the jquery mobile examples, nothing exotic at all.
I am using Notepad++ as my code editor. I even tried copying into windows notepad, and pasting back, but nothing changed.