-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (52 loc) · 2.27 KB
/
index.html
File metadata and controls
54 lines (52 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="HTML, CSS, Responsive, JavaScript , JS, Exercise">
<meta name="description" content="Website for exercise JavaScript">
<meta name="author" content="Ahmad Mokhtari">
<link rel="shortcut icon" href="assets/img/icon-logo.ico" type="image/x-icon">
<title>JavaScript Class</title>
<!-- css -->
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/jsClass/css/login.css">
<!-- JavaScript -->
<script src="assets/jsClass/js/axios/axios.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/menu.js"></script>
<script src="assets/js/search.js"></script>
<!-- Google Fonts -->
<!-- <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=Salsa&display=swap" rel="stylesheet"> -->
</head>
<body>
<aside id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="index.html">Home</a>
<script>menuFilter(menuItem,"jsClass","true");</script>
</aside>
<main id="main">
<span class="span" onclick="openNav()">☰ Menu</span>
<section class="container">
<div id="postMethodButton" style="margin: auto;">
<a id ="exact" class="loginBtn" style="font-size: 22px;" onclick="searchMethod('Exact')">Exact</a>
<a id ="anywhere" class="loginBtn" onclick="searchMethod('Anywhere')">Anywhere</a>
</div><br>
<section class="autocomplete">
<input id="searchbar" autocomplete="off" type="text"
name="search" placeholder="Search Topic ...">
</section>
<br>
<!-- Loader -->
<div id="loader" style="margin: auto;text-align: center;">
<div id="loaderIcon" class="loaderIcon"><div></div><div></div><div></div><div></div></div>
<p id="loaderText" class="loaderText">Loading...</p>
</div>
</section>
<section id="result" class="container">
</section>
</main>
</body>
</html>