24 lines
619 B
HTML
24 lines
619 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Splirate History</title>
|
|
<link rel="icon" type="image/png" href="logo-single.png">
|
|
<link rel="stylesheet" href="history.css">
|
|
</head>
|
|
|
|
<body>
|
|
<main class="history-page">
|
|
<header>
|
|
<h1><img class="brand-logo" src="logo.png" alt="Splirate"></h1>
|
|
<button id="clearHistoryBtn" type="button">Clear</button>
|
|
</header>
|
|
<p id="status">Loading history...</p>
|
|
<ul id="historyList"></ul>
|
|
</main>
|
|
<script src="history.js"></script>
|
|
</body>
|
|
|
|
</html> |