-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatchTheCheese.html
25 lines (25 loc) · 1.47 KB
/
catchTheCheese.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en" class="d-flex h-100">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Catch the cheese</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🧀</text></svg>">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link href="theme.css" rel="stylesheet" />
<script type="module" src="darkModeSupport.js" defer></script>
<script type="module" src="catchTheCheese.js" defer></script>
</head>
<body class="flex-fill d-flex p-3 flex-column">
<nav aria-label="breadcrumb">
<ol class="breadcrumb mb-4">
<li class="breadcrumb-item"><a href="index.html">Web shorts - Mini games</a></li>
<li class="breadcrumb-item active" aria-current="page">
Catch the cheese
</li>
</ol>
</nav>
<div id="playground" class="flex-fill bg-body-secondary" style="font-size: 3rem; cursor: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22 height=%223rem%22><text y=%22.9em%22 font-size=%2285%22>🐭</text></svg>'), default;">
<div id="cheese" style="height: 6rem; width: 6rem" class="position-relative align-content-end m-0 p-0 text-end d-none">🧀</div>
</div>
</body>