18 lines
315 B
HTML
18 lines
315 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>가위바위보</title>
|
|
<style>
|
|
#computer {
|
|
width: 142px;
|
|
height: 200px;
|
|
background-position: 0 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script src="./dist/app.js"></script>
|
|
</body>
|
|
</html>
|