You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
761 B
26 lines
761 B
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
|
|
</head>
|
|
<body>
|
|
<h1>Combat Tracker</h1>
|
|
<table class="striped">
|
|
<button class="btn" id="new">New Creature</button>
|
|
<button class="btn" id="sort">Sort</button>
|
|
<thead>
|
|
<tr>
|
|
<th>initiative</th>
|
|
<th>name</th>
|
|
<th>notes</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
<script src="app.js" charset="utf-8"></script>
|
|
</body>
|
|
</html>
|