-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdemo.html
31 lines (28 loc) · 1.16 KB
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!doctype html>
<html data-theme="dark" lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>demo</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="hero min-h-screen"
style="background-image: url(https://daisyui.com/images/stock/photo-1507358522600-9f71e620c44e.jpg);">
<div class="hero-overlay bg-opacity-60"></div>
<div class="hero-content text-center text-white">
<div class="max-w-md">
<h1 class="mb-5 text-5xl font-bold">Hello there!</h1>
<p class="mb-5">Check out these sample daisyUI component buttons.</p>
<button class="btn">Button</button>
<button class="btn btn-neutral">Neutral</button>
<button class="btn btn-primary">Primary</button>
<button class="btn btn-secondary">Secondary</button>
<button class="btn btn-accent">Accent</button>
<button class="btn btn-ghost">Ghost</button>
<button class="btn btn-link">Link</button>
</div>
</div>
</div>
</body>
</html>