My menu does not show icons.


There are several reasons why your menu does not show icons:
  • The page is not configured for UTF charset. Try to add the line below in the <head> section:

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

  • The page does not include the DOCTYPE declaration. The DOCTYPE declaration must be the very first thing in your HTML document, before the <html> tag. Like this:

    <!DOCTYPE html>
    <html>
    <head>
    ...

  • Your page has errors. Check the structure of HTML, CSS code, and scripts.




Uploading ...