24 lines
705 B
HTML
24 lines
705 B
HTML
<!doctype html>
|
|
<html lang="">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Dandadân</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script defer src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div class="hand" id="opponent-hand"></div>
|
|
<div id="border"></div>
|
|
<div class="hand" id="own-hand"></div>
|
|
</main>
|
|
<aside id="view-card-container">
|
|
<div id="param-container">
|
|
<span id="param"></span>
|
|
</div>
|
|
<img src=".." alt="" id="view-card" />
|
|
</aside>
|
|
</body>
|
|
</html>
|