-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
129 lines (99 loc) · 5.41 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<title>Project</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="/node_modules/bootstrap-icons/font/bootstrap-icons.css">
<style>
.heading{
border-bottom: 2px solid black;
}
.logo{
width: 100px;
}
.navbar-nav{
width: 900px;
}
iframe{
height: 5300px;
border: none;
}
</style>
</head>
<body class="container-fluid">
<!-- <div class="header"> -->
<div class="heading p-4 text-center">
<h2>Naresh Institute and Technologies</h2>
</div>
<div class="nav-panel">
<nav class="navbar navbar-expand-lg navbar-light bg-light mt-3">
<div class="container-fluid">
<button class="navbar-toggler" data-bs-target="#menulist" data-bs-toggle="collapse">
<span class="navbar-toggler-icon"></span>
</button>
<a href="index.html" class="navbar-brand">
<img src="../assets/Nareshit-Logo-Png.png" class="logo h-25" alt="logo">
</a>
<div class="collapse navbar-collapse " id="menuList">
<div class="d-flex justify-content-between">
<ul class="navbar-nav">
<li class="nav-item">
<a href="home.html" target="frameBody" class="nav-link">
<span class="bi bi-house"></span><span class="opt">Home</span>
</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link" target="frameBody">
<span class="bi bi-question-circle"></span><span class="opt">About</span>
</a>
</li>
<li class="nav-item">
<a href="service.html" class="nav-link" target="frameBody">
<span class="bi bi-info-square"></span><span class="opt">Service</span>
</a>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-link" target="frameBody">
<span class="bi bi-telephone"></span><span class="opt">Contact us</span>
</a>
</li>
</ul>
<div class="dropdown-container d-flex">
<div class="dropdown">
<button class="dropdown-toggle btn btn-light" data-bs-toggle="dropdown" data-bs-target="#items">
<span class="bi bi-box-arrow-in-right"></span>Sign In
</button>
<div class="dropdown-menu dropdown-collapse collapse" id="#items">
<div class="dropdown-item">
<a href="signin.html" target="frameBody" class="text-black text-decoration-none">
<span class="bi bi-box-arrow-in-right"></span>Sign In
</a>
</div>
<div class="dropdown-item">
<a href="signup.html" target="frameBody" class="text-black text-decoration-none">
<span class="bi bi-person-add"></span>Sign Up
</a>
</div>
<div class="dropdown-item">
<a href="change.html" target="frameBody" class="text-black text-decoration-none">
<span class="bi bi-lock"></span>Change Password
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
<!-- </div> -->
<section class="mt-2">
<iframe name="frameBody" src="home.html" width="100%" height="100%" ></iframe>
</section>
<script src="../../node_modules/jquery/dist/jquery.js"></script>
<script src="../../node_modules/bootstrap/dist/js/bootstrap.bundle.js"></script>
</body>
</html>