-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
123 lines (114 loc) · 4.54 KB
/
Copy pathindex.html
File metadata and controls
123 lines (114 loc) · 4.54 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!doctype html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>Try TypeScript - Learn TypeScript Interactively [Free 150 Lessons]</title>
<meta
name="title"
content="Try TypeScript - Learn TypeScript Interactively [Free 150 Lessons]"
/>
<meta
name="description"
content="Learn TypeScript for free with 150 interactive lessons. From basics to advanced. Practice coding directly in your browser with real-time feedback. Available in English and Portuguese."
/>
<meta
name="keywords"
content="typescript, learn typescript, typescript tutorial, typescript course, free typescript, interactive typescript, programming, web development, javascript, typescript lessons, aprender typescript"
/>
<meta name="author" content="Try TypeScript" />
<meta name="robots" content="index, follow" />
<meta name="language" content="Portuguese, English" />
<meta name="revisit-after" content="7 days" />
<!-- GEO Tags -->
<meta name="geo.region" content="BR" />
<meta name="geo.country" content="Brazil" />
<meta name="distribution" content="global" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://try-typescript.com/" />
<meta
property="og:title"
content="Try TypeScript - Learn TypeScript Interactively [Free 150 Lessons]"
/>
<meta
property="og:description"
content="Learn TypeScript for free with 150 interactive lessons. Practice coding directly in your browser with real-time feedback."
/>
<meta property="og:image" content="https://try-typescript.com/og-image.png" />
<meta property="og:locale" content="pt_BR" />
<meta property="og:locale:alternate" content="en_US" />
<meta property="og:site_name" content="Try TypeScript" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://try-typescript.com/" />
<meta property="twitter:title" content="Try TypeScript - Learn TypeScript Interactively" />
<meta
property="twitter:description"
content="Learn TypeScript for free with 150 interactive lessons. Practice coding directly in your browser."
/>
<meta property="twitter:image" content="https://try-typescript.com/og-image.png" />
<!-- Canonical -->
<link rel="canonical" href="https://try-typescript.com/" />
<!-- Theme Color -->
<meta name="theme-color" content="#3178C6" />
<meta name="msapplication-TileColor" content="#3178C6" />
<!-- Structured Data - WebApplication -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Try TypeScript",
"alternateName": "Learn TypeScript",
"description": "Interactive platform to learn TypeScript with 150 free lessons",
"url": "https://try-typescript.com/",
"applicationCategory": "EducationApplication",
"operatingSystem": "Web Browser",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"150 Interactive TypeScript Lessons",
"Real-time Code Execution",
"English and Portuguese Languages",
"Syntax Highlighting Editor",
"Progress Tracking"
],
"author": {
"@type": "Organization",
"name": "Try TypeScript"
}
}
</script>
<!-- Structured Data - Course -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Course",
"name": "TypeScript Mastery",
"description": "Complete TypeScript course from basics to advanced topics",
"provider": {
"@type": "Organization",
"name": "Try TypeScript",
"sameAs": "https://try-typescript.com/"
},
"hasCourseInstance": {
"@type": "CourseInstance",
"courseMode": "online",
"courseWorkload": "P3M"
}
}
</script>
<!-- Preconnect for Performance -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>