-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (41 loc) · 2.16 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title lang="pt-BR">Jogo da Memória</title>
<link href="https://fonts.googleapis.com/css?family=Comfortaa:300,400,700" rel="stylesheet">
<link rel="stylesheet" href="css/generic/reset.css">
<link rel="stylesheet" href="css/base/index.css">
</head>
<body>
<div id="root"></div>
<script src="src/components/flat-button/index.js"></script>
<script src="src/objects/logo-wrapper/index.js"></script>
<script src="src/objects/logo-gueio/index.js"></script>
<script src="src/objects/title-page/index.js"></script>
<script src="src/objects/forms-wrapper/index.js"></script>
<script src="src/objects/msg-error/index.js"></script>
<script src="src/objects/form-label/index.js"></script>
<script src="src/objects/form-input/index.js"></script>
<script src="src/objects/form-eye/index.js"></script>
<script src="src/components/submit-button/index.js"></script>
<script src="src/components/form-signup/index.js"></script>
<script src="src/objects/forget-link/index.js"></script>
<script src="src/components/form-login/index.js"></script>
<script src="src/global/store.js"></script>
<script src="src/components/point-bar/index.js"></script>
<script src="src/objects/cards-wrapper/index.js"></script>
<script src="src/components/memory-card/index.js"></script>
<script src="src/objects/cover-game/index.js"></script>
<script src="src/components/start-btn/index.js"></script>
<script src="src/components/back-btn/index.js"></script>
<script src="src/objects/layer-start/index.js"></script>
<script src="src/pages/game/index.js"></script>
<script src="src/pages/signup/index.js"></script>
<script src="src/pages/login/index.js"></script>
<script src="src/pages/status404/index.js"></script>
<script src="src/app.js"></script>
</body>
</html>