-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
430 lines (355 loc) · 16.3 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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="IJBRSS publishes cutting-edge research at the intersection of business and technology.">
<meta name="author" content="">
<title>IJBRSS</title>
<link rel="favicon" href="assets/images/favicon.png">
<link rel="stylesheet" media="screen" href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,700">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<!-- Custom styles for our template -->
<link rel="stylesheet" href="assets/css/bootstrap-theme.css" media="screen" >
<link rel="stylesheet" type="text/css" href="assets/css/da-slider.css" />
<link rel="stylesheet" href="assets/css/style.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
<style>
nav {
opacity: 0.8;
background-color: #333333;
width: 100%;
height: 100px;
display: flex;
justify-content: space-around;
align-items: center;
position: relative;
top: 0;
transition: 1s ease;
color: white;
}
nav ul{
list-style: none;
}
.list{
padding-left: 30px;
padding-right: 30px;
}
.menu a{
color: white;
text-decoration: none;
}
#profilepic{
width: 350px;
}
</style>
</head>
<body>
<!-- Fixed navbar -->
<!-- <nav>
<div class="logo">
<img src="assets/images/logo.png" alt="" srcset="" width="100px">
</div>
<div class="menu">
<ul>
<li> <a href="index.html" class="list">Home</a> </li>
<li> <a href="callforpapers.html" class="list">Call For Papers</a> </li>
<li> <a href="researchpaper.html" class="list">Research Area</a> </li>
<li> <a href="virtuallib.html" class="list" >Virtual Library</a> </li>
<li> <a href="contact.html" class="list">Contact Us</a> </li>
</ul>
</div>
</nav> -->
<div class="navbar navbar-inverse navbar-fixed-top headroom" >
<div class="container">
<div class="navbar-header">
<!-- Button for smallest screens -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"><span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>
<a class="navbar-brand" href="index.html"><img src="assets/images/logo.png" alt="IJBRSS HTML5 template" id="mainlogo"></a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav pull-right">
<li ><a href="index.html">Home</a></li>
<li><a href="callforpapers.html">Call For Papers</a></li><li><a href="researchpaper.html" class="active">Research Area</a></li>
<li><a href="currentissue.html">Current Issue</a></li>
<li><a href="archives.html">Archives</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Join Us <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="loginreviewer.html">Apply As Reviewer</a></li>
<li><a href="signup.html">Register/Login</a></li>
<li><a href="#">Archives </a></li>
<li><a href="#">Editorial Board</a></li>
</ul>
</li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
<!-- /.navbar -->
<!-- Header -->
<br>
<br>
<br>
<br>
<br>
<div class="container">
<div class="row">
<!-- Article main content -->
<article class="col-sm-8 maincontent">
<header class="page-header">
<h1 class="page-title">Internantional Journal of Business Research and Social Sciences </h1>
</header>
<h3>About IJBRSS</h3>
<br>
<p><img src="assets/images/logo3.png" alt="" class="img-rounded pull-right" width="300" > IJBRSS, the Internantional Journal of Business Research and Social Sciences , is a distinguished scholarly publication dedicated to advancing the realms of business and technology.
</p>
<p>We publish original, high-quality research articles, case studies, and reviews, fostering innovation and interdisciplinary collaboration.</p>
<p>With a broad scope covering topics from strategic management to emerging technologies, we provide global insights and a platform for research paper publication. </p>
<p> Our commitment is to empower researchers, academics, practitioners, and policymakers worldwide, shaping the future of these dynamic and ever-evolving domains.</p>
</article>
<!-- /Article -->
<!-- Sidebar -->
<aside class="col-sm-4 sidebar sidebar-right">
<div class="panel">
<h4>Important Links</h4>
<ul class="list-unstyled list-spaces">
<li><a href="signin.html">Paper Submission</a><br><span class="small text-muted">Paper submission: Initiates the journey to share and validate research findings in academic circles.</span></li>
<li><a href="signin.html">Track Your Submission</a><br><span class="small text-muted">Track your submission for real-time updates on the review process.</span></li>
<li><a href="">Editorial Board</a><br><span class="small text-muted">Expert Editorial Board assess submissions for quality and relevance in peer-review.</span></li>
<li><a href="">Board Members</a><br><span class="small text-muted">Board members guide journal direction, ensuring quality and scholarly rigor</span></li>
<li><a href="">Virtual Library</a><br><span class="small text-muted">A virtual library offers digital access to extensive educational resources online.</span></li>
</ul>
</div>
</aside>
<!-- /Sidebar -->
</div>
</div>
<!-- /Header -->
<!-- Intro -->
<div class="container text-center">
<br>
<h2 >Unlocking the Future: IJBRSS - Your Gateway to Business and Technology Advancements.
</h2>
<p class="text-muted">
Your Gateway to Business and Technology Advancements. We not only provide insights but also offer a platform for publishing your research papers, fostering innovation and global collaboration.
</p>
</div>
<!-- /Intro-->
<!-- Highlights - jumbotron -->
<div class="jumbotron top-space">
<div class="container">
<h3 class="text-center">Here is our core Services</h3>
<div class="row">
<div class="col-md-3 col-sm-6 highlight">
<div class="h-caption"><h4><i class="fa fa-arrows fa-2x circle"></i>Global Insights</h4></div>
<div class="h-body text-center">
<p>Explore emerging technologies, entrepreneurship, finance, sustainability, and more, gaining global perspectives on contemporary challenges and advancements.</p>
</div>
</div>
<div class="col-md-3 col-sm-6 highlight">
<div class="h-caption"><h4><i class="fa fa-css3 fa-2x circle"></i>Open Access</h4></div>
<div class="h-body text-center">
<p>IJBRSS follows an open-access model, ensuring research accessibility worldwide, promoting knowledge dissemination, and driving future developments.</p>
</div>
</div>
<div class="col-md-3 col-sm-6 highlight">
<div class="h-caption"><h4><i class="fa fa-lightbulb-o fa-2x circle"></i>Research Excellence</h4></div>
<div class="h-body text-center">
<p>IJBRSS publishes cutting-edge research articles, case studies, and reviews at the nexus of business and technology, advancing knowledge and practice in diverse fields.</p>
</div>
</div>
<div class="col-md-3 col-sm-6 highlight">
<div class="h-caption"><h4><i class="fa fa-desktop fa-2x circle"></i>Publication Platform: </h4></div>
<div class="h-body text-center">
<p>We provide a prestigious platform for researchers to publish their work, fostering innovation and interdisciplinary collaboration.</p>
</div>
</div>
</div> <!-- /row -->
</div>
</div>
<!-- /Highlights -->
<!-- container -->
<div class="container">
<div class="heading text-center">
<!-- Heading -->
<h2>IJBRSS</h2>
<p>Pioneering Business-Tech Research and Innovation. Welcome to Our World.</p>
</div>
<div>
<p>Welcome to IJBRSS, where cutting-edge research converges with innovative technology. As a prestigious scholarly publication, we're dedicated to advancing the realms of business and technology. Our mission is to foster interdisciplinary collaboration, disseminate knowledge, and empower researchers, practitioners, academics, and policymakers. With a wide-ranging scope, we explore topics from strategic management to emerging technologies, offering a global platform for publishing research papers. Join us in shaping the future at IJBRSS. </p>
</div>
<div class="row iconColor">
<div class="col-md-4 col-sm-4">
<h3><i class="fa fa-desktop color"></i> What we do?</h3>
<!-- Paragraph -->
<p>At IJBRSS, we publish pioneering research at the intersection of business and technology. We foster innovation, interdisciplinary collaboration, and global insights while providing a platform for research paper publication.</p>
</div>
<div class="col-md-4 col-sm-4">
<!-- Heading -->
<h3><i class="fa fa-cloud color"></i> Why choose us?</h3>
<!-- Paragraph -->
<p>Choose IJBRSS for cutting-edge research, global insights, and research paper publication. We foster innovation and interdisciplinary collaboration, serving as your gateway to the future of business and technology.</p>
</div>
<div class="col-md-4 col-sm-4">
<!-- Heading -->
<h3><i class="fa fa-home color"></i> Where are we?</h3>
<!-- Paragraph -->
<p>IJBRSS operates globally, reaching researchers, academics, and professionals worldwide. While our physical location may vary, our online presence ensures accessibility and knowledge dissemination to a diverse audience.</p>
</div>
</div>
</div>
<div class="container">
<div class="jumbotron top-space">
<p>IJBRSS, the Internantional Journal of Business Research and Social Sciences , is a distinguished scholarly publication dedicated to advancing the realms of business and technology. We publish original, high-quality research articles, case studies, and reviews, fostering innovation and interdisciplinary collaboration. With a broad scope covering topics from strategic management to emerging technologies, we provide global insights and a platform for research paper publication. Our commitment is to empower researchers, academics, practitioners, and policymakers worldwide, shaping the future of these dynamic and ever-evolving domains.</p>
<p class="text-right"><a class="btn btn-primary btn-large">Learn more..</a></p>
</div>
</div> <!-- /container -->
<div class="container">
<div class="row">
<div class='col-md-offset-2 col-md-8 text-center'>
<h2>Call For Papers </h2>
<br>
<center> <h5>We invite Scientists, Academicians and Researchers to submit their articles for publication in a monthly, fully refereed, open access, peer-reviewed and Social Science International Journal.</h5></center>
<br>
</div>
</div>
<center>
<div class="box-wrap">
<div class="container table-responsive py-5">
<table class="table table-bordered table-hover">
<thead class="thead-dark">
<tr>
<th scope="col">Month / Year / Volume / Issue</th>
<th scope="col">October 2023 Volume VII Issue X</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Submission Deadline</th>
<td>10.10.2023</td>
</tr>
<tr>
<th scope="row">New Submission</th>
<td>Online Submission</td>
</tr>
<tr>
<th scope="row">Publication Fees</th>
<td>30$ (USD)</td>
</tr>
<tr>
<th scope="row">Final Submission for Accepted Paper </th>
<td>Online Submission</td>
</tr>
<tr>
<th scope="row">Digital Object Identifier(DOI) </th>
<td>10.47772/IJRISS</td>
</tr>
</tbody>
</table>
</div>
</div>
</center>
</div>
<!-- Social links. @TODO: replace by link/instructions in template -->
<section id="social">
<div class="container">
<div class="wrapper clearfix">
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_linkedin_counter"></a>
<a class="addthis_button_google_plusone" g:plusone:size="medium"></a>
</div>
<!-- AddThis Button END -->
</div>
</div>
</section>
<!-- /social links -->
<footer id="footer" class="top-space">
<div class="footer1">
<div class="container">
<div class="row">
<div class="col-md-5 panel">
<h3 class="panel-title">About IJBRSS</h3>
<div class="panel-body">
<p>IJBRSS (Internantional Journal of Business Research and Social Sciences ) is a prestigious scholarly publication at the forefront of business and technology research. With a commitment to rigorous peer review and open access, IJBRSS offers valuable insights, fostering collaboration among researchers, academics, practitioners, and policymakers to shape the future of these dynamic fields.</p>
</div>
</div>
<div class="col-md-4 panel contact">
<h3 class="panel-title">Contact Info</h4>
<div class="panel-body">
<p>IJBRSS publishes cutting-edge research at the intersection of business and technology.</p>
<ul>
<li><i class="fa fa-phone"></i>+91 88650 09495</li>
<li><a href="#"><i class="fa fa-envelope-o"></i> dr.rachitag@gmail.com</a></li>
<li><i class="fa fa-flag"></i>123 Smith Drive, Baltimore, MD 21212</li>
</ul>
</div>
</div>
<div class="col-md-3 panel">
<h3 class="panel-title">Follow me</h3>
<div class="panel-body">
<p class="follow-me-icons">
<a href=""><i class="fa fa-twitter fa-2"></i></a>
<a href=""><i class="fa fa-dribbble fa-2"></i></a>
<a href=""><i class="fa fa-github fa-2"></i></a>
<a href=""><i class="fa fa-facebook fa-2"></i></a>
<a href=""><i class="fa fa-youtube fa-2"></i></a>
<a href=""><i class="fa fa-pinterest fa-2"></i></a>
</p>
</div>
</div>
</div> <!-- /row of panels -->
</div>
</div>
<div class="footer2">
<div class="container">
<div class="row">
<div class="col-md-6 panel">
<div class="panel-body">
<p class="simplenav">
<a href="index.html">Home</a> |
<a href="callforpapers.html">Call For Papers</a> |
<a href="researchpaper.html">Research Area</a> |
<a href="virtuallib.html">Virtual Library</a> |
<a href="contact.html">Contact Us</a>
</p>
</div>
</div>
<div class="col-md-6 panel">
<div class="panel-body">
<p class="text-right">
Copyright © 2023. Made by <a href="https://devanshucodes.github.io/devanshu/" rel="develop">Devanshu Saxena</a>
</p>
</div>
</div>
</div> <!-- /row of panels -->
</div>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<!-- JavaScript libs are placed at the end of the document so the pages load faster -->
<script src="assets/js/modernizr-latest.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="assets/js/jquery.cslider.js"></script>
<script src="assets/js/headroom.min.js"></script>
<script src="assets/js/jQuery.headroom.min.js"></script>
<script src="assets/js/custom.js"></script>
<script>
$(document).ready(function(){
$('.navbar-fostrap').click(function(){
$('.nav-fostrap').toggleClass('visible');
$('body').toggleClass('cover-bg');
});
});</script>
</body>
</html>