30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>My Demo</title>
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta charset="utf-8">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap" rel="stylesheet">
|
|
<link type="text/css" rel="stylesheet" href="reset.css" />
|
|
<link type="text/css" rel="stylesheet" href="base.css" />
|
|
<link type="text/css" rel="stylesheet" href="styles.css" />
|
|
<script src="node_modules/jquery/dist/jquery.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="vertical-stack">
|
|
<fieldset id="demo" class="box">
|
|
<legend title="asdf">My Demo</legend>
|
|
<div id="output"></div>
|
|
</fieldset>
|
|
|
|
<section class="box">
|
|
<button id="btnGo" class="action-button">Go</button>
|
|
</section>
|
|
</div>
|
|
<footer class="footer">copyright © 2024 <a href="https://sfcoder.me">Tom Hicks</a> licensed under <a href="https://opensource.org/license/gpl-2-0">GPL v2.0 or later</a></footer>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html>
|