mirror of
https://github.com/lukaszraczylo/filepuff-mcp.git
synced 2026-06-05 22:23:50 +00:00
30 lines
941 B
HTML
30 lines
941 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Test HTML File</title>
|
|
</head>
|
|
<body>
|
|
<div class="container mx-auto px-4">
|
|
<h1 class="text-3xl font-bold text-blue-600">Hello World</h1>
|
|
<p class="text-gray-700 mt-4">This is a test HTML file with Tailwind CSS classes.</p>
|
|
|
|
<div class="flex gap-4 mt-8">
|
|
<button class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded">
|
|
Primary Button
|
|
</button>
|
|
<button class="bg-gray-500 hover:bg-gray-700 text-white font-bold py-2 px-4 rounded">
|
|
Secondary Button
|
|
</button>
|
|
</div>
|
|
|
|
<ul class="list-disc list-inside mt-4">
|
|
<li>First item</li>
|
|
<li>Second item</li>
|
|
<li>Third item</li>
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|