Skip to content

Instantly share code, notes, and snippets.

@RJFerguson
Created February 22, 2022 23:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RJFerguson/ca4a9dcc499cf81a0363a42d625d60a4 to your computer and use it in GitHub Desktop.
Save RJFerguson/ca4a9dcc499cf81a0363a42d625d60a4 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css"
rel="stylesheet"
/>
<title>Welcome to Tailwind!</title>
</head>
<body>
<div id="app" class="p-4">
<button
class="
bg-blue-500
hover:bg-blue-700
text-white
font-bold
py-2
px-4
rounded
"
>
Primary Button
</button>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment