-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (27 loc) · 1.77 KB
/
index.html
File metadata and controls
28 lines (27 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!doctype html>
<html lang="en">
<head>
<meta name="author" content="Abdulrahmsn Badamasi" />
<meta name="description" content="A memory game built with React.You can Play the Memory game either solo or multiplayer (up to 4 players),
Set the theme to use numbers or icons within the tiles, Choose to play on either a 6x6 or 4x4 grid" />
<meta property="og:title" content="Memory game" />
<meta property="og:description" content="A memory game built with React.You can Play the Memory game either solo or multiplayer (up to 4 players),
Set the theme to use numbers or icons within the tiles, Choose to play on either a 6x6 or 4x4 grid" />
<meta property="og:image" content="https://res.cloudinary.com/dz209s6jk/image/upload/v1632473820/Challenges/xkdgkwu9c6jeo4pfybrj.jpg" />
<meta name="twitter:image" content="https://res.cloudinary.com/dz209s6jk/image/upload/v1632473820/Challenges/xkdgkwu9c6jeo4pfybrj.jpg" />
<meta name="twitter:description" content="A memory game built with React.You can Play the Memory game either solo or multiplayer (up to 4 players),
Set the theme to use numbers or icons within the tiles, Choose to play on either a 6x6 or 4x4 grid" />
<meta name="twitter:title" content="Memory game" />
<meta name="color-scheme" content="light dark" />
<meta name="twitter:card" content="summary_large_image">
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="36x36" href="/favicon.png" />
<link href='https://fonts.googleapis.com/css?family=Atkinson Hyperlegible' rel='stylesheet'>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Memory game</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>