-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (68 loc) · 2.83 KB
/
index.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!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>Teacher Locator</title>
</head>
<body>
<header>
<a href="#">Teacher Locator</a>
</header>
<nav class="menu">
<a href="index.html">Home</a>
<div class="dropdown">
<button class="dropbtn">Department
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="https://nmamit.nitte.edu.in/department-AI&DS.php">Ai&Ds</a>
<a href="https://nmamit.nitte.edu.in/department-AI&ML.php">Ai&Ml</a>
<a href="https://nmamit.nitte.edu.in/department-biotechnology.php">Biotech</a>
<a href="https://nmamit.nitte.edu.in/department-CCN.php">CC</a>
<a href="https://nmamit.nitte.edu.in/department-civil.php">Civil</a>
<a href="https://nmamit.nitte.edu.in/department-computer-science.php">CS</a>
<a href="https://nmamit.nitte.edu.in/department-electrical-electronics.php">EnE</a>
<a href="https://nmamit.nitte.edu.in/department-electronics-communication.php">EnC</a>
<a href="https://nmamit.nitte.edu.in/department-information-science.php">IS</a>
<a href="https://nmamit.nitte.edu.in/department-mechanical.php">Mech</a>
<a href="https://nmamit.nitte.edu.in/department-robotics.php">R&Ai</a>
<a href="https://nmamit.nitte.edu.in/physics.php">Physics</a>
<a href="https://nmamit.nitte.edu.in/Chemistry.php">Chemistry</a>
<a href="https://nmamit.nitte.edu.in/mathematics.php">Maths</a>
<a href="https://nmamit.nitte.edu.in/humanities.php">Humanities</a>
</div>
</div>
<a href="about.html">About</a>
<a href="mailto:[email protected]">Report a bug</a>
</nav>
<main>
<div class="searchBar">
<form action="#" id="frm">
<input type="text" id="teacher" name="teacher" placeholder="Enter teacher's name">
<button type="submit" value="Search" id="subButton">Search</button>
</form>
</div>
<div class="movingDiv" id="mydiv">
</div>
<h4 style="text-align: center">QUICK LINKS</h4>
<div class="dept" id="my2div">
</div>
</main>
<footer>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="mailto:[email protected]">Report a bug</a>
<p>Resources: <a href="https://nmamit.nitte.edu.in">nmamit.in</a></p>
<p>Images from: <a href="https://pngtree.com">pngtree.com</a></p>
<nav class="fnav">
<a href="#"><img src="gmailN.png"></a>
<a href="#"><img src="instagramN.png"></a>
<a href="#"><img src="linkedinN.png"></a>
</nav>
</footer>
<script src="script.js?version=1.4.2"></script>
<script src="script2.js"></script>
</body>
</html>