forked from woowacourse/javascript-racingcar-precourse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
33 lines (30 loc) · 978 Bytes
/
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>자동차 경주 게임</title>
<script src="https://cdn.jsdelivr.net/npm/@woowacourse/[email protected]/dist/mission-utils.min.js"></script>
</head>
<body>
<div id="app">
<h1>🏎️ 자동차 경주 게임</h1>
<p>
자동차 이름을 <strong>5자 이하로</strong> 콤마로 구분하여 입력해주세요.
<br />
올바른 예) east,west,south,north <br />
</p>
<form>
<input id="car-names-input" type="text" />
<button id="car-names-submit">확인</button>
</form>
<h4>시도할 횟수를 입력해주세요.</h4>
<form>
<input id="racing-count-input" type="number" />
<button id="racing-count-submit">확인</button>
</form>
<h4>📄 실행 결과</h4>
<h4>최종 우승자: <span id="racing-winners">(우승자)</span></h4>
</div>
<script type="module" src="src/index.js"></script>
</body>
</html>