-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
38 lines (35 loc) · 1.4 KB
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<title>CSUN Electives Search</title>
</head>
<body>
<a href="index.html" style="font-size: 1.5rem; color: white;">Back</a>
<div class="image">
<h1>CSUN Class Electives Search - Hash Table Vs. Trie</h1>
<div class="wrapper">
<div class="search-input" style="text-transform: capitalize;">
<a href="" target="_blank" hidden></a>
<input type="text" id="txtfld" onclick="SelectAll('txtfld')" placeholder="Look At The Console for Performance Times">
<div class="autocom-box">
<!-- here list are inserted from javascript -->
</div>
<div class="icon"><i class="bi bi-search"></i></div>
</div>
<p id="results" style="text-transform: uppercase;"></p>
<br><br>
</div>
<!-- linking javscript -->
<script src="info.js"></script>
<script src="electives_hash.js"></script>
<footer>
<p style="font-size: larger;"><i class="bi bi-laptop"></i> Edited by: L.Curry (March 2021)</p>
<p>Original Codes by CodingNepal (www.codingnepalweb.com)</p>
<p>& LearnersBucket (https://learnersbucket.com)</p>
</footer>
</div>
</body>
</html>