|
2 | 2 | <html lang="en"> |
3 | 3 | <head> |
4 | 4 | <meta charset="utf-8"> |
5 | | - <meta name="viewport" content="width=device-width, initial-scale=1"> |
6 | | - |
7 | | - <!-- Favicon --> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
| 6 | + <!-- |
| 7 | + manifest.json provides metadata used when your web app is added to the |
| 8 | + homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/ |
| 9 | + --> |
| 10 | + <link rel="manifest" href="%PUBLIC_URL%/manifest.json"> |
8 | 11 | <link rel="apple-touch-icon" sizes="180x180" href="%PUBLIC_URL%/apple-touch-icon.png"> |
9 | 12 | <link rel="icon" type="image/png" href="%PUBLIC_URL%/favicon-32x32.png" sizes="32x32"> |
10 | 13 | <link rel="icon" type="image/png" href="%PUBLIC_URL%/favicon-16x16.png" sizes="16x16"> |
11 | | - <link rel="manifest" href="%PUBLIC_URL%/manifest.json"> |
12 | 14 | <link rel="mask-icon" href="%PUBLIC_URL%/safari-pinned-tab.svg" color="#5bbad5"> |
13 | 15 | <meta name="theme-color" content="#ffffff"> |
14 | | - |
15 | | - <!-- Fonts --> |
16 | | - <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=PT+Serif|Open+Sans:300,400,600,700,800"> |
17 | | - |
18 | | - <!-- Bootstrap --> |
19 | | - <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css"> |
20 | | - |
21 | 16 | <!-- |
22 | | - Notice the use of %PUBLIC_URL% in the tag above. |
| 17 | + Notice the use of %PUBLIC_URL% in the tags above. |
23 | 18 | It will be replaced with the URL of the `public` folder during the build. |
24 | 19 | Only files inside the `public` folder can be referenced from the HTML. |
25 | 20 |
|
26 | 21 | Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will |
27 | 22 | work correctly both with client-side routing and a non-root public URL. |
28 | 23 | Learn how to configure a non-root public URL by running `npm run build`. |
29 | 24 | --> |
| 25 | + <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=PT+Serif|Open+Sans:300,400,600,700,800"> |
| 26 | + <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css"> |
30 | 27 | <title>Scratch - A simple note taking app</title> |
31 | 28 | </head> |
32 | 29 | <body> |
| 30 | + <noscript> |
| 31 | + You need to enable JavaScript to run this app. |
| 32 | + </noscript> |
33 | 33 | <div id="root"></div> |
34 | 34 | <!-- |
35 | 35 | This HTML file is a template. |
|
38 | 38 | You can add webfonts, meta tags, or analytics to this file. |
39 | 39 | The build step will place the bundled scripts into the <body> tag. |
40 | 40 |
|
41 | | - To begin the development, run `npm start`. |
42 | | - To create a production bundle, use `npm run build`. |
| 41 | + To begin the development, run `npm start` or `yarn start`. |
| 42 | + To create a production bundle, use `npm run build` or `yarn build`. |
43 | 43 | --> |
44 | 44 | </body> |
45 | 45 | </html> |
0 commit comments