-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (48 loc) · 1.52 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<html>
<head>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div
class="min-h-screen bg-gradient-to-r from-violet-500 to-fuchsia-500 p-2"
>
<div class="card">
<div class="card-body p-2" id="app">
<button class="btn btn-primary bg-sky-500 border-sky-500" id="appbtn">
Primary Button
</button>
</div>
</div>
<!-- card end -->
<div class="grid">
<div class="col-12 pt-2">
<div class="card m-2">
<div class="card-body text-sky-400">
<form id="formgroup">
<label for="customRange1" class="form-label">Title </label>
<input id="title" class="form-control mb-2" type="text" />
<label for="customRange1" class="form-label">Price </label>
<input id="price" class="form-control" type="number" />
<button
class="btn btn-primary bg-sky-500 mt-2 border-sky-500"
type="submit"
value="ok"
id="submit"
>
Submit
</button>
</form>
</div>
</div>
<!-- card end -->
</div>
</div>
</div>
</body>
</html>