Files
cors-test-lab/index.html
Meghdad 71a7ea1b57 init
2026-06-21 03:55:53 +03:30

25 lines
772 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#2563eb" />
<meta
name="description"
content="A static browser-based CORS testing dashboard for API teams."
/>
<meta property="og:title" content="CORS Test Lab" />
<meta
property="og:description"
content="Test real browser CORS behavior from a static GitHub Pages app."
/>
<meta property="og:type" content="website" />
<link rel="icon" type="image/svg+xml" href="./cors-lab.svg" />
<title>CORS Test Lab</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>