14 lines
374 B
HTML
14 lines
374 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Vanilla JS App</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>Hello Vanilla JS!</h1>
|
|
<p>Edit files directly. No build step required.</p>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html> |