19 lines
508 B
HTML
19 lines
508 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<script
|
|
defer
|
|
src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"
|
|
></script>
|
|
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>AF</title>
|
|
</head>
|
|
<body>
|
|
<h1>Welcome to my website</h1>
|
|
<p>Stay here please...</p>
|
|
<h1 x-data="{ message: 'I ❤️ Alpine' }" x-text="message"></h1>
|
|
</body>
|
|
</html>
|