-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (41 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Adviser</title>
<link
href="https://cdn.jsdelivr.net/npm/daisyui@2.51.2/dist/full.css"
rel="stylesheet"
type="text/css"
/>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<main class="flex justify-center items-center h-screen">
<div>
<form class="flex gap-5" id="search-advice">
<input
id="search-input"
type="text"
placeholder="Type here"
class="input input-bordered input-secondary w-full max-w-xs"
autocomplete="off"
/>
<button type="submit" class="btn">Search</button>
</form>
<section class="mt-5">
<div class="card w-96 bg-base-100 shadow-xl">
<div class="card-body" id="advice">
<h2 class="card-title">Advice #55</h2>
<p>bla bla bla</p>
</div>
<button class="btn" id="get-advice">get</button>
</div>
</section>
</div>
</main>
<script src="./js/script.js"></script>
</body>
</html>