battleship/demo/dragdrop/index.html

20 lines
394 B
HTML
Raw Permalink Normal View History

2022-09-14 09:34:39 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>dragdrop</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="one">
<span id="box" draggable="true"></span>
</div>
<div id="two"></div>
<script src="main.js" defer></script>
</body>
</html>