You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
555 B
17 lines
555 B
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Sudoku Solver by QubiCode</title> |
|
<link rel="stylesheet" href="~/lib/dx/dx.light.css"> |
|
<link rel="stylesheet" href="~/css/sudoku-solver.css" asp-append-version="true"> |
|
</head> |
|
<body> |
|
@RenderBody() |
|
|
|
<script src="~/lib/dx/jquery.min.js"></script> |
|
<script src="~/lib/dx/dx.all.js"></script> |
|
<script src="~/js/sudoku-solver.js" asp-append-version="true"></script> |
|
</body> |
|
</html> |