Skip to content

Commit

Permalink
trying to fix font
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivamJoker committed Aug 16, 2019
1 parent ae4818a commit 8a427ff
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
<link rel="apple-touch-icon" href="%PUBLIC_URL%/icons/ios-icon.png" />
<link
rel="stylesheet"
<!--
href="https://fonts.googleapis.com/css?family=Roboto:300,400"
--
/>
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#e91e63" />
Expand All @@ -32,4 +35,17 @@
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
<script type="text/javascript">
WebFontConfig = {
google: { families: ["Roboto:300,400"] }
};
(function() {
var wf = document.createElement("script");
wf.src = "https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js";
wf.type = "text/javascript";
wf.async = "true";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
</html>

0 comments on commit 8a427ff

Please sign in to comment.