-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 2.39 KB
/
index.html
File metadata and controls
34 lines (30 loc) · 2.39 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="src/assets/favicon-32x32.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap" rel="stylesheet">
<meta property="og:title" content="Online Code Editor and Collaboration Platform" />
<meta property="og:description" content="An intuitive online code editor for developers with real-time collaboration and support for multiple programming languages." />
<meta property="og:image" content="%PUBLIC_URL%/path_to_your_image.jpg" /> <!-- Replace with an actual image path -->
<meta property="og:url" content="https://www.yourwebsite.com" /> <!-- Replace with your website URL -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Online Code Editor and Collaboration Platform" />
<meta name="twitter:description" content="Experience real-time collaboration and comprehensive coding features in our online code editor." />
<meta name="twitter:image" content="%PUBLIC_URL%/path_to_your_image.jpg" /> <!-- Replace with an actual image path -->
<!-- SEO Meta Tags -->
<meta name="description" content="Discover an intuitive online code editor designed for developers, students, and coding enthusiasts. Our platform offers real-time collaboration, syntax highlighting, and support for multiple programming languages." />
<meta name="keywords" content="code editor, online code editor, real-time collaboration, JavaScript, Python, HTML, CSS, TypeScript, code formatting, coding snippets, programming tools" />
<meta name="robots" content="index, follow">
<title>Coding Playground</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</html>