-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (24 loc) · 1.1 KB
/
index.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
26
27
28
29
<!DOCTYPE html>
<html lang="pt-BR" oncontextmenu="return false">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Kurumi30">
<meta name="og:url" content="">
<meta property="og:title" content="2048 game">
<meta name="og:description" content="Um jogo para passar o tempo">
<meta property="og:image" content="./assets/favicon.ico">
<title>2048</title>
<link rel="icon" type="image/png" href="./assets/favicon.ico" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.css">
<script src="https://cdn.jsdelivr.net/npm/notyf@3/notyf.min.js" defer></script>
<script type="module" src="./js/script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/swiped-events/1.1.9/swiped-events.min.js"
integrity="sha512-Km1M9MRIhy+uzmSn7MU2G0fQawFMpfpScHpf0UUvcpkGJCJhwlTRF/mbTUimo1N9woYZ5RLES7iL+kp65Q1d0Q=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<main id="game-board"></main>
</body>
</html>