/
Sense
/
Crash_Game
Обзор
Документация
Войти
/
Sense
/
Crash_Game
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
client/index.html
23 строки
1 KB
sergrek2002
Set up initial project structure with core game components
23 июн 2025, 23:30
23 июн 2025, 23:30
87e4894
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" /> <title>CrashGame - Demo Mode</title> <meta name="description" content="Play CrashGame in demo mode with virtual credits. Experience the thrill of multiplier betting with rocket flight animations and auto-stop features."> <!-- Preload fonts --> <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=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600;700&display=swap" rel="stylesheet"> <!-- FontAwesome --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> </head> <body> <div id="root"></div> <script type="module" src="/src/main.tsx"></script> <!-- This is a replit script which adds a banner on the top of the page when opened in development mode outside the replit environment --> <script type="text/javascript" src="https://replit.com/public/js/replit-dev-banner.js"></script> </body> </html>