-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.html
50 lines (47 loc) · 1.89 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Typing Practice App</title>
<link rel="icon" href="/favicon.ico" />
<link
rel="apple-touch-icon"
href="/apple-touch-icon-180x180.png"
sizes="180x180"
/>
<link rel="mask-icon" href="/mask-icon.svg" color="#FFFFFF" />
<meta name="theme-color" content="#ffffff" />
<!-- Meta Tags for SEO -->
<meta
name="description"
content="Improve your typing skills with this interactive typing practice app. Test your speed and accuracy in typing different texts."
/>
<meta
name="keywords"
content="typing practice, typing test, typing speed, typing accuracy, improve typing skills, Ashfiquzzaman Sajal, https://typing-app-five.vercel.app"
/>
<meta name="author" content="Ashfiquzzaman Sajal" />
<!-- Open Graph Meta Tags for Social Media -->
<meta property="og:title" content="Typing Practice App" />
<meta
property="og:description"
content="Improve your typing skills with this interactive typing practice app. Test your speed and accuracy in typing different texts."
/>
<meta property="og:image" content="/cover.png" />
<meta property="og:url" content="https://typing-app-five.vercel.app/" />
<meta property="og:type" content="website" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Typing Practice App" />
<meta
name="twitter:description"
content="Improve your typing skills with this interactive typing practice app. Test your speed and accuracy in typing different texts."
/>
<meta name="twitter:image" content="/cover.png" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>