-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcustomize.html
45 lines (32 loc) · 1.23 KB
/
customize.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>P5.js Sketch Example</title>
<link rel="stylesheet" href="./styles/customize.css">
</head>
<body>
<button class="back_btn">back</button>
<main>
<section class="player_customize p_c_sec_2">
<button id="change-player-1-left"><img src="./assets/red-left-arrow.svg" alt=""></button>
<div class="player">
<h1>player 1</h1>
<img src="" alt="">
<img src="" class=" player_1_skin"alt="">
</div>
<button id="change-player-1-right"><img src="./assets/red-right-arrow.svg" alt=""></button>
</section>
<section class="player_customize p_c_sec_1">
<button id="change-player-2-left"><img src="./assets/blue-left-arrow.png" alt=""></button>
<div class="player">
<h1>player 2</h1>
<img src="" alt="">
<img src="" class="player_2_skin" alt="">
</div>
<button id="change-player-2-right" ><img src="./assets/blue-right-arrow.png" alt=""></button>
</section>
</main>
<script type="module" src="./scripts/Customize.js"></script>
</body>
</html>