-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 1.83 KB
/
Copy pathindex.html
File metadata and controls
58 lines (54 loc) · 1.83 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
<!doctype html>
<html lang="en">
<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" />
<title>The Simpsons App - Explore Springfield</title>
<!-- SEO Meta Tags -->
<meta
name="description"
content="Explore the world of The Simpsons! Browse characters, episodes, and iconic locations from Springfield's favorite family. A modern, beautiful web application."
/>
<meta
name="keywords"
content="Simpsons, Springfield, Characters, Episodes, Homer, Bart, Lisa, Marge, Maggie, TV Show, Animation"
/>
<meta name="author" content="userlg" />
<!-- Open Graph Meta Tags -->
<meta
property="og:title"
content="The Simpsons App - Explore Springfield"
/>
<meta
property="og:description"
content="Discover every character, episode, and location from The Simpsons universe. A modern, interactive web experience."
/>
<meta property="og:type" content="website" />
<meta
property="og:url"
content="https://userlg.github.io/The-Simpsons-App/"
/>
<meta
property="og:image"
content="https://userlg.github.io/The-Simpsons-App/og-image.png"
/>
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="The Simpsons App" />
<meta
name="twitter:description"
content="Explore Springfield's finest characters, episodes, and locations."
/>
<meta
name="twitter:image"
content="https://userlg.github.io/The-Simpsons-App/og-image.png"
/>
<!-- Theme Color -->
<meta name="theme-color" content="#ffd90f" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>