-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.php
131 lines (118 loc) · 3.63 KB
/
header.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
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
130
131
<?php
?>
<!doctype HTML>
<html>
<head>
<title>Bootstrap 4 Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<style>
body{
margin: 0px;
}
ul {
font-family: sans-serif;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
#list{
float: left;
}
#list a{
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
a:hover{
background-color:green;
}
h1{
margin: 0px;
background-color: lightblue;
font-size: 50px;
text-align: center;
text-shadow:
}
h2{margin:5px;
text-align: center;
background-color: blanchedalmond;
}
.logo {
display: block;
margin-left: auto;
margin-right: auto;
width: 15%;
}
.dropdown{
}
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color: white;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.dropdown:hover .dropbtn {
background-color: green;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #333;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
color:white;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left; color:white;
}
.dropdown-content a:hover {
background-color: green;
}
.dropdown:hover .dropdown-content {
display: block;
}
</style>
</head>
<body>
<h1>BHARAT COKING COAL LIMITED</h1>
<img src="logo.jpg" alt="BCCL logo" class="logo" align>
<h2>QUARTER ALLOTMENT PORTAL</h2>
<ul>
<li id="list"><a href="home.php">Home</a></li>
<li id="list">
<div class="dropdown">
<button class="dropbtn"><a href="#">Application </a>
</button>
<div class="dropdown-content">
<a href="apply.php">Application Form</a>
<a href="change.php">Apply for change</a>
<a href="status.php">Status Track</a>
</div>
</div>
</li>
<li id="list"><a href="avail.php">Quarter Availability</a></li>
<li id="list"><a href="help.php">Helpdesk</a></li>
<li style="float:right" id="list"><a class="active" href="login.php">Login</a></li>
</ul>
</body>
</html>