templates/vitekit/modal.html
2026-04-12 21:03:18 +03:00

27 lines
745 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modal Component Demo</title>
</head>
<body>
<header class="header">
<nav>
<a href="/">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
</header>
<h1>Modal Component Demo</h1>
<button id="openModalBtn">Open Modal</button>
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close-button">&times;</span>
<h2>Modal Title</h2>
<p>This is a simple modal window.</p>
</div>
</div>
<script type="module" src="/src/main.js"></script>
</body>
</html>