-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfill.html
More file actions
169 lines (168 loc) · 3.57 KB
/
fill.html
File metadata and controls
169 lines (168 loc) · 3.57 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE html>
<html>
<head>
<title>first page</title>
<style type="text/css">
body{
margin: 0;
}
#eew{
color: white;
padding: .15vw .1vw .15vw .1vw;
background-color: #01159B;
}
#top-bar{
color: white;
width: auto;
background-color: #01159B;
}
#top-bar-c{
padding: .5vw .5vw .5vw .5vw;
border-left:.1vw solid #48B2D6;
margin: 0;
}
#ttop{
margin: 0vw 0vw 0vw 45vw;
}
#bemllogo{
margin: 1vw 2vw 1vw 2vw;
}
#be{
text-align: center;
font-size: 2vw;
color: #01519E;
font-weight: bold;
}
#hee{
text-align: center;
margin: 1vw 6vw 1vw 6vw;
}
#teaa{
color: #4F4C4C;
font-weight: bold;
}
img{
margin: 0;
}
h4{
font-weight: normal;
}
#ppp{
background-color:#01159B;
color: white;
}
ul#hrl li{
display: inline;
padding: 1vw;
margin: 0;
}
ul#hrl1 li{
text-align: center;
padding: 1vw .2vw 1vw .2vw;
display: inline;
border-left:.1vw solid #48B2D6;
}
ul#drop-downlist li{
text-align: center;
padding: 1vw .2vw 1vw .2vw;
border-left:.1vw solid #48B2D6;
}
ul#drop-down-sublist{
list-style-type: none;
}
ul#drop-down-sublist li{
padding: 1vw .2vw 1vw .2vw;
border-left:.1vw dotted black;
}
#drop-down{
display: none;
}
li:hover{
background-color: white;
color:#01159B;
}
</style>
</head>
<body>
<div id="top-bar">
<table id="ttop">
<tr>
<td id="top-bar-c">Skip to Main Content</td>
<td id="top-bar-c">Accessibiltiy option</td>
<td id="top-bar-c">Screen Reader</td>
<td id="top-bar-c">test</td>
<td id="top-bar-c">Translate to Hindi</td>
</tr>
</table>
</div>
<div id="logoplace">
<table>
<tr>
<td><img src="https://www.bemlindia.in/images/logo_beml1.png" width="255vw" height="147vw" id="bemllogo"></td>
<td><p id="hee"><span id="be">BEML LIMITED<br>CIN:L35202KA1964GOI001530</span><br><span id="teaa">Government of India, Ministry of Defence<br>A Miniratna Category-1 Company</span></p></td>
<td>
<p><img src="https://www.bemlindia.in/images/icon_make.png"><img src="https://www.bemlindia.in/images/icon_swachha.png"></p>
<p><input type="text" placeholder="Nothing to search here ; )"><img src="https://www.bemlindia.in/images/search-icon.jpg" width="34vw" height="31vw"></p>
<p><h4>Wednesday 26/09/19 05:44 PM</h4></p>
<p>
<ul id="hrl">
<li id="ppp">CAREER</li>
<li id="ppp">RTI</li>
<li id="ppp">TENDER</li>
</ul>
</p>
</td>
</tr>
</table>
</div>
<div id="eew">
<ul id="hrl1">
<li>CORPORATE</li>
<li>BUSINESS</li>
<li>FACILITIES</li>
<li>INVESTORS</li>
<li id="tonext1">SUPPLIERS</li>
<li>MAKE IN INDIA</li>
<li>VIGILANCE</li>
<li>INFO DESK</li>
<li>CSR</li>
<li>CONTACT US</li>
</ul>
</div>
<div id="drop-down">
<table><tr>
<td><ul id="drop-down-sublist">
<li>Tender</li>
<li>Intergrity Pact</li>
<li>Purchase Manual</li>
</ul></td>
<td>
<ul id="drop-down-sublist">
<li>Verndor Registration Procedure</li>
<li>Items for Development</li>
<li>Supplier Collaboration</li>
</ul></td>
<td>
<ul id="drop-down-sublist">
<li>Vendor Registration Form</li>
<li id="tonext2">eProcurement(SRM)</li>
</ul></td>
<td>
<ul id="drop-down-sublist">
<li>Online Vendor Registration</li>
<li>Know your Bill Status</li>
</ul></td>
</tr>
</table>
</div>
</body>
<p1>H</p1>
<script type="text/javascript">
document.getElementById("tonext1").onclick=function(){
document.getElementById("drop-down").style.display="block";
};
document.getElementById("tonext2").onclick=function(){
document.location.replace("index.html");
}
</script>
</html>