-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject_0605.html
More file actions
45 lines (42 loc) · 1.43 KB
/
Copy pathproject_0605.html
File metadata and controls
45 lines (42 loc) · 1.43 KB
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 lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Racing Game</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script defer src="project_0605.js"></script>
<link rel="stylesheet" href="project_0605.css" />
</head>
<body>
<header>- RACING GAME -</header>
<main>
<div class="track">
<div class="lane" id="lane1">
<img src="assets/hourse.gif" class="horse" id="lane1_Horse" />
</div>
<div class="lane" id="lane2">
<img src="assets/hourse.gif" class="horse" id="lane2_Horse" />
</div>
<div class="lane" id="lane3">
<img src="assets/hourse.gif" class="horse" id="lane3_Horse" />
</div>
<div class="lane" id="lane4">
<img src="assets/hourse.gif" class="horse" id="myHorse" />
</div>
</div>
<div class="ranking" id="rankingBox">
<p>난이도를 선택하고 게임 시작 버튼을 누르세요!</p>
</div>
<div class="controls">
<button id="reset">RESET</button>
<select id="gameLevel">
<option value="easy">EASY</option>
<option value="normal">NORMAL</option>
<option value="hard">HARD</option>
</select>
<button id="start">START</button>
</div>
</main>
</body>
</html>