-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
19 lines (18 loc) · 798 Bytes
/
index.html
File metadata and controls
19 lines (18 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://unpkg.com/htmx.org@1.9.10" integrity="sha384-D1Kt99CQMDuVetoL1lrYwg5t+9QdHe7NLX/SoJYkXDFfX37iInKRy5xLSi8nO7UC" crossorigin="anonymous"></script>
<script src="https://cdn.tailwindcss.com"></script>
<title>HTMX Crash Course</title>
</head>
<body>
<h1>Traversy HTMX Crash Course</h1>
<h2>Node & Express</h2>
<div class="text-center">
<h1 class="text-2xl font-bold my-5">Request Example</h1>
<button hx-get="/users" hx-swap="outerHTML" class="bg-green-500 transform motion-safe:hover:scale-110 hover:bg-green-700 text-white py-2 px-3 my-5 rounded-lg">Fetch Users</button>
</div>
</body>
</html>