_GameLayout.cshtml 505 B

123456789101112131415
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="initial-scale=1, width=device-width">
  6. <link rel="stylesheet" href="~/css/sicbo-game.css" />
  7. <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Kanit:wght@800;900&display=swap" />
  8. <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=SF+Pro:wght@700;900&display=swap" />
  9. @RenderSection("Styles", required: false)
  10. </head>
  11. <body>
  12. @RenderBody()
  13. </body>
  14. </html>