-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (76 loc) · 3.22 KB
/
Copy pathindex.html
File metadata and controls
76 lines (76 loc) · 3.22 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Tabler starter</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/core@latest/dist/css/tabler.min.css" />
</head>
<body>
<div class="page">
<div class="page-wrapper">
<div class="page-header d-print-none">
<div class="container-xl">
<div class="row g-2 align-items-center">
<div class="col">
<div class="page-pretitle">Starter</div>
<h2 class="page-title">Hello, Tabler!</h2>
</div>
<div class="col-auto ms-auto d-print-none">
<a href="https://docs.tabler.io" class="btn btn-primary" target="_blank" rel="noopener">Documentation</a>
</div>
</div>
</div>
</div>
<div class="page-body">
<div class="container-xl">
<div class="row row-cards">
<div class="col-md-6">
<div class="card">
<div class="card-body">
<h3 class="card-title">Buttons</h3>
<div class="btn-list">
<button type="button" class="btn btn-primary">Primary</button>
<button type="button" class="btn btn-secondary">Secondary</button>
<button type="button" class="btn btn-outline-danger">Outline</button>
<button type="button" class="btn btn-ghost-info">Ghost</button>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-body">
<h3 class="card-title">Form</h3>
<div class="mb-3">
<label class="form-label" for="starter-name">Your name</label>
<input type="text" class="form-control" id="starter-name" placeholder="Jane Doe" />
</div>
<label class="form-check form-switch">
<input class="form-check-input" type="checkbox" checked />
<span class="form-check-label">Enable notifications</span>
</label>
</div>
</div>
</div>
<div class="col-12">
<div class="card">
<div class="card-body">
<h3 class="card-title">Next steps</h3>
<p class="text-secondary">
Edit <code>index.html</code> and use any component from the
<a href="https://preview.tabler.io" target="_blank" rel="noopener">Tabler preview</a>. The full
documentation is available at
<a href="https://docs.tabler.io" target="_blank" rel="noopener">docs.tabler.io</a>.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@tabler/core@latest/dist/js/tabler.min.js"></script>
</body>
</html>