forked from next-step/js-vending-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (26 loc) · 814 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./index.css" />
<title>NEXTSTEP JavaScript Vending machine</title>
</head>
<body>
<h1>🥤자판기🥤</h1>
<nav>
<button id="product-manage-menu" class="vending-machine-menu">
상품 관리
</button>
<button id="vending-machine-manage-menu" class="vending-machine-menu">
잔돈충전
</button>
<button id="product-purchase-menu" class="vending-machine-menu">
상품 구매
</button>
</nav>
<div id="app"></div>
<script type="module" src="./js/index.js"></script>
</body>
</html>