You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
765 B
34 lines
765 B
<!DOCTYPE html>
|
|
<html lang="fr-FR">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>webdev-minimal</title>
|
|
|
|
<script
|
|
defer
|
|
src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"
|
|
></script>
|
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script>
|
|
tailwind.config = {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
crealise: "#da373d",
|
|
},
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<link href="main.css" rel="stylesheet" />
|
|
</head>
|
|
|
|
<body
|
|
class="animate-[pulse_1s_ease-out] bg-gray-200 dark:black m-10"
|
|
x-data="{}"
|
|
>
|
|
<h1 class="text-4xl font-bold">Hello Créalise</h1>
|
|
</body>
|
|
</html>
|