-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (41 loc) · 1.23 KB
/
Copy pathindex.html
File metadata and controls
42 lines (41 loc) · 1.23 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
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- bootstrap cdn -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<!-- style -->
<link rel="stylesheet" href="./style.css" />
<title>search | جستجوکردن</title>
</head>
<body>
<div class="wrapper">
<div class="header d-flex flex-column align-items-center">
<h2 class="text-center mt-2">دسته بندی ها</h2>
<input
type="text"
class="mt-3"
id="myinput"
placeholder="جستجو در بیش از 3 دسته بندی..."
/>
</div>
<div class="container main">
<h3
class="text-danger mt-5 text-center"
id="para"
style="display: none"
>
پیدا نشد
</h3>
<div class="row mt-3 d-flex justify-content-center" id="card"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>