Skip to content

Commit

Permalink
Added icons to index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisnajman committed May 23, 2024
1 parent 8da8bff commit de0a91f
Showing 1 changed file with 33 additions and 11 deletions.
44 changes: 33 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,35 @@
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/lib/styles/css/react-mde-all.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="root"></div>
<script src="/index.jsx" type="module"></script>
</body>

<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/lib/styles/css/react-mde-all.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<title>Scrimba original</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript">
(function (l) {
if (l.search[1] === "/") {
var decoded = l.search
.slice(1)
.split("&")
.map(function (s) {
return s.replace(/~and~/g, "&");
})
.join("?");
window.history.replaceState(null, null, l.pathname.slice(0, -1) + decoded + l.hash);
}
})(window.location);
</script>
</head>

<body>
<div id="root"></div>
<script src="/index.jsx" type="module"></script>
</body>

</html>

0 comments on commit de0a91f

Please sign in to comment.