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