-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (39 loc) · 1.05 KB
/
index.html
File metadata and controls
47 lines (39 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Auto Complete Suggestions</title>
<link rel="stylesheet" href="app.css" />
</head>
<body>
<header>
<div class="nav">
<div>
<button>
<img src="icon/setting-2.svg" alt="" />
</button>
<button id="btnOpenSearch">
<img src="icon/search-normal.svg" alt="" />
</button>
</div>
<img src="icon/snappTextLogo.svg" alt="" />
<button>
<img src="icon/menu.svg" alt="" />
</button>
</div>
<div class="navSearch">
<button id="btnBack">
<img
style="transform: rotate(180deg)"
src="icon/arrow-left.svg"
alt=""
/>
</button>
<input placeholder="جستجو ..." id="inputSearch" type="text" />
<div class="boxSearch"></div>
</div>
</header>
<script src="app.js"></script>
</body>
</html>