mirror of
https://github.com/j178/prek.git
synced 2026-04-25 02:11:36 +02:00
14 lines
319 B
HTML
14 lines
319 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>My App</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
</head>
|
|
<body>
|
|
<h1>Hello World</h1>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|