index.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
  6. <link rel="stylesheet" href="/css/bootstrap.css">
  7. <!-- 开启理想视口,用于做移动端网页的适配 -->
  8. <meta name="viewport" content="width=device-width, initial-scale=1" />
  9. <!-- 用于配置浏览器标签+地址栏的颜色(仅支持安卓手机浏览器) -->
  10. <meta name="theme-color" content="#000000" />
  11. <meta
  12. name="description"
  13. content="Web site created using create-react-app"
  14. />
  15. <!-- 用于指定网页添加到手机主屏幕后的图标 -->
  16. <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
  17. <!--
  18. manifest.json provides metadata used when your web app is installed on a
  19. user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
  20. 应用加壳时的配置文件
  21. -->
  22. <link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
  23. <!--
  24. <link rel="stylesheet" href="./css/index.css" />
  25. 也可以通过此种方式引入css
  26. -->
  27. <title>React App</title>
  28. </head>
  29. <body>
  30. <noscript>You need to enable JavaScript to run this app.</noscript>
  31. <div id="root"></div>
  32. <!--
  33. This HTML file is a template.
  34. If you open it directly in the browser, you will see an empty page.
  35. You can add webfonts, meta tags, or analytics to this file.
  36. The build step will place the bundled scripts into the <body> tag.
  37. To begin the development, run `npm start` or `yarn start`.
  38. To create a production bundle, use `npm run build` or `yarn build`.
  39. -->
  40. </body>
  41. </html>