-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
42 lines (38 loc) · 1.33 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<title>SOET Placement Portal</title>
<link rel="stylesheet" type="text/css" href="style/index.css">
<link rel="stylesheet" type="text/css" href="style/nav.css">
</head>
<body class="bg">
<div class="container">
<!-- Navigation Menu Starting -->
<div class="navbar">
<a href="index.php">Home</a>
<a href="procedure.php" target="frame">Procedure</a>
<div class="dropdown">
<button class="dropbtn">Why Recruit
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="selection_process.php" target="frame">Selection Process</a>
<a href="pool-placement.php" target="frame">Pool Placement</a>
<a href="rec&alumni.php" target="frame">Our Recruiter & Alumni</a>
<a href="develop.php" target="frame">All Round Development</a>
</div>
</div>
<a href="academics.php" target="frame">Academics</a>
<a href="contacts.php" target="frame">Contact Us</a>
<div id="nav_logo">
<a href="index.php"><img src="img/logo.png"></img></a>
</div>
</div>
<!-- Navigation Menu Ending -->
<!-- Frame Starting -->
<div class="frame">
<iframe width="100%" height="100%" frameborder="0" src="home.php" name="frame" id="frame"></iframe>
</div>
</div>
</body>
</html>