-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (50 loc) · 1.97 KB
/
index.html
File metadata and controls
55 lines (50 loc) · 1.97 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
<!DOCTYPE html>
<html lang="fa" dir="rtl">
<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>Document</title>
<link rel="stylesheet" href="./css/main.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=League+Gothic&family=Merriweather:ital,wght@1,300&family=Open+Sans:ital,wght@1,300&family=Oswald&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css"
rel="stylesheet"
type="text/css"
/>
<script src="./js_code/script.js" defer></script>
</head>
<body>
<div class="form-container">
<form>
<input type="text" id="query" placeholder="کوئری خود را وارد کنید" />
<div class="form-control">
<select name="" id="select">
<optgroup label="سیستم توصیهگر">
<option value="boolean" selected>boolean</option>
<option value="tfidf">TfIdf</option>
<option value="transformer">Transformer</option>
<option value="fasttext">Fasttext</option>
<option value="elastic">جستجوی گسترش یافته</option>
</optgroup>
<optgroup label="">
<option value="classify">دستهبندی</option>
<option value="cluster">خوشهبندی</option>
</optgroup>
</select>
<span>
<input type="checkbox" id="expand" />
<label for="expand">گسترش کوئری</label>
</span>
<button type="button" id="cta-btn">جست و جو</button>
</div>
</form>
</div>
<div id="data-section"></div>
</body>
</html>