31 lines
676 B
HTML
31 lines
676 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Ladder Test Playground</title>
|
|
<style>
|
|
.counter-widget {
|
|
margin-bottom: 10px;
|
|
}
|
|
.counter {
|
|
padding: 5px;
|
|
}
|
|
.rung {
|
|
width: 30px;
|
|
height: 30px;
|
|
border: solid black;
|
|
border-width: 0 2px 2px 2px;
|
|
}
|
|
.rung:last-of-type {
|
|
border-width: 0 2px 0 2px;
|
|
}
|
|
.rung:first-of-type {
|
|
border-width: 0 2px 2px 2px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="./main.tsx"></script>
|
|
</body>
|
|
</html> |