-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (60 loc) · 2.67 KB
/
index.html
File metadata and controls
60 lines (60 loc) · 2.67 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#2a303c" />
<meta name="iSpeakerReact" />
<link rel="apple-touch-icon" href="/images/icons/ios/192.png" />
<title>iSpeakerReact</title>
<link href="/styles/style.css" rel="stylesheet" />
<meta
name="description"
content="An English-learning interactive tool written in React, designed to help learners practice speaking and listening."
/>
<meta
name="keywords"
content="ispeaker, iSpeakerReact, oxford, react, vite, JavaScript, English-learning, english, interactive tool, speaking, listening, online exercise"
/>
<!-- Canonical URL -->
<link rel="canonical" href="https://learnercraft.github.io/ispeakerreact/" />
<!-- Author and Copyright -->
<meta name="author" content="LearnerCraft Labs" />
<meta name="copyright" content="LearnerCraft Labs" />
<!-- Robots -->
<meta name="robots" content="index, follow" />
<!-- Open Graph Metadata -->
<meta property="og:title" content="iSpeakerReact" />
<meta
property="og:description"
content="An English-learning interactive tool written in React, designed to help learners practice speaking and listening."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://learnercraft.github.io/ispeakerreact/" />
<meta
property="og:image"
content="https://learnercraft.github.io/ispeakerreact/socialimg.jpg"
/>
<meta property="og:locale" content="en_US" />
<!-- Twitter Card Metadata -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="iSpeakerReact" />
<meta
name="twitter:description"
content="An English-learning interactive tool written in React, designed to help learners practice speaking and listening."
/>
<meta
name="twitter:image"
content="https://learnercraft.github.io/ispeakerreact/socialimg.jpg"
/>
<!-- Language -->
<meta http-equiv="Content-Language" content="en" />
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>