-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (26 loc) · 1.7 KB
/
index.html
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
29
30
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Fun and interactive multiplication practice for elementary school kids. Improve math skills through games and exercises." />
<meta name="keywords" content="multiplication practice, elementary math, math games, learning multiplication, interactive math exercises" />
<meta property="og:title" content="Multiplication Practice for Elementary School Kids" />
<meta property="og:description" content="Fun and interactive multiplication practice for elementary school kids. Improve math skills through games and exercises." />
<meta property="og:image" content="https://example.com/your-app-image.jpg" />
<meta property="og:url" content="https://example.com/your-app-url" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Multiplication Practice for Elementary School Kids" />
<meta name="twitter:description" content="Fun and interactive multiplication practice for elementary school kids. Improve math skills through games and exercises." />
<meta name="twitter:image" content="https://example.com/your-app-image.jpg" />
<meta name="robots" content="index, follow" />
<meta name="author" content="Nereida Rondon" />
<title>MathSpace</title>
<link rel="stylesheet" href="src/index.css">
</head>
<body class='flex w-screen h-screen bg-black font-quicksand'>
<div id="root" class='w-screen h-screen'></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>