forked from next-step/js-racingcar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.79 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>🏎️ 자동차 경주 게임 | jlee0505</title>
<link rel="stylesheet" href="./src/css/index.css" />
</head>
<body>
<div id="app">
<!--<section class="d-flex d-flex-col items-center mt-5">
<form class="name-form">
<fieldset class="name-area">
<h1 class="text-center">🏎️ 자동차 경주 게임</h1>
<p>
5자 이하의 자동차 이름을 콤마로 구분하여 입력해주세요. <br />
예시) EAST, WEST, SOUTH, NORTH
</p>
<div class="d-flex">
<input type="text" class="w-100 mr-2" placeholder="자동차 이름" />
<button type="button" class="btn btn-cyan">확인</button>
</div>
</fieldset>
</form>
<form class="count-form">
<fieldset class="count-area hidden mw-355">
<p>시도할 횟수를 입력해주세요.</p>
<div class="d-flex">
<input type="number" class="w-100 mr-2" placeholder="시도 횟수" />
<button type="button" class="btn btn-cyan">확인</button>
</div>
</fieldset>
</form>
</section>
<section class="d-flex justify-center mt-5 play-area hidden">
<div class="mt-4 d-flex"></div>
</section>
<section class="d-flex justify-center mt-5 result-area hidden">
<div>
<h2>🏆 최종 우승자: <span class="winner-list"></span> 🏆</h2>
<div class="d-flex justify-center">
<button type="button" class="btn btn-cyan">다시 시작하기</button>
</div>
</div>
</section>-->
</div>
<script type="module" src="./src/js/index.js"></script>
</body>
</html>