19 lines
756 B
Plaintext
19 lines
756 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<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=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
|
|
<link href="css/app.css" rel="stylesheet" />
|
|
<!-- Если имя вашего проекта другое, ссылка на app.css может отличаться -->
|
|
<link href="BlazorBlackjack.styles.css" rel="stylesheet" /> <!-- Эта строка важна для изолированных стилей -->
|
|
</head>
|
|
|
|
<body>
|
|
<Routes @rendermode="InteractiveServer" />
|
|
<script src="_framework/blazor.web.js"></script>
|
|
</body>
|
|
|
|
</html>
|