Skip to content

Commit e508a44

Browse files
Import fonts from Google. Fix build warning
1 parent 44e9b0d commit e508a44

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

index.html

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,22 @@
33
<head>
44
<meta charset="utf-8" />
55
<title>tic-tac-toe</title>
6-
76
<base href="/" />
8-
97
<meta name="color-scheme" content="light dark" />
108
<meta
119
name="viewport"
1210
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"
1311
/>
1412
<meta name="format-detection" content="telephone=no" />
1513
<meta name="msapplication-tap-highlight" content="no" />
16-
1714
<link rel="manifest" href="/manifest.json" />
18-
1915
<link rel="shortcut icon" type="image/png" href="/favicon.png" />
2016

17+
<!-- add font -->
18+
<link rel="preconnect" href="https://fonts.googleapis.com" />
19+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
20+
<link href="https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&display=swap" rel="stylesheet" />
21+
2122
<!-- add to homescreen for ios -->
2223
<meta name="apple-mobile-web-app-capable" content="yes" />
2324
<meta name="apple-mobile-web-app-title" content="Ionic App" />
@@ -47,11 +48,6 @@
4748
transform: rotate(360deg);
4849
}
4950
}
50-
51-
@font-face {
52-
font-family: 'Fuzzy Bubbles';
53-
src: url('./assets/fonts/FuzzyBubbles-Regular.ttf');
54-
}
5551
</style>
5652
</head>
5753
<body>

0 commit comments

Comments
 (0)