-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (68 loc) · 2.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- reset css -->
<link rel="stylesheet" href="./src/styles/reset.css" />
<!-- framework -->
<link rel="stylesheet" href="./src/styles/buttons.css" />
<link rel="stylesheet" href="./src/styles/containers_and_frames.css" />
<!-- Fontes Google -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet" />
<!-- favicon -->
<link rel="shortcut icon" href="./src/assets/favicon/Favicon.ico" type="image/x-icon">
<!-- main css -->
<link rel="stylesheet" href="./src/styles/main.css" />
<title>Jo-Ken-Po Yu-Gi-Oh Edition</title>
</head>
<body>
<audio id="bgm" loop>
<source src="./src/assets/audios/egyptian_duel.mp3" type="audio/mp3"/>
</audio>
<div class="bg-video">
<video class="video" autoplay loop muted>
<source src="./src/assets/video/yugi.mp4" type="video/mp4" />
</video>
</div>
<div class="container">
<div class="container__left framed-golden-2">
<div class="score_box frame">
<span id="score_points">Win : 0 | Lose : 0</span>
</div>
<div class="menu_avatar">
<img id="card-image" />
</div>
<div class="card_details frame">
<p id="card-name">Selecione</p>
<p id="card-type">uma carta</p>
</div>
</div>
<div class="container__right">
<div class="card-box__container">
<div class="card-box framed" id="computer-cards"></div>
<div class="card-versus__container">
<div class="versus-top">
<div class="card-infield">
<img id="player-field-card" height="180px" width="125px" />
</div>
<img height="100px" src="./src/assets/icons/millenium2.png" />
<div class="card-infield">
<img id="computer-field-card" height="180px" width="125px" />
</div>
</div>
<div class="versus-bottom">
<button id="next-duel" class="rpgui-button" onclick="resetDuel()">
GANHOU
</button>
</div>
</div>
<div class="card-box framed" id="player-cards"></div>
</div>
</div>
</div>
<script src="./src/scripts/engine.js" defer></script>
</body>
</html>