16 lines
329 B
HTML
16 lines
329 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Demo Page</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Welcome to the Demo Page</h1>
|
|
<p>This is a basic HTML template.</p>
|
|
<script src="./src/index.ts" type="module"></script>
|
|
</body>
|
|
|
|
</html> |