-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html~
582 lines (550 loc) · 28.4 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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Btech - Enteprise Linux and FOSS Services</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/style.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="font-awesome-4.1.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="css/fonts1.css" rel="stylesheet" type="text/css">
<link href='css/fonts2.css' rel='stylesheet' type='text/css'>
<link href='css/fonts3.css' rel='stylesheet' type='text/css'>
<link href='css/fonts4.css' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body id="page-top" class="index">
<!-- Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand page-scroll" href="#page-top"><img src="img/logos/logo-btech.png" alt="" height="30px"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class="hidden">
<a href="#page-top"></a>
</li>
<li>
<a class="page-scroll" href="#services">Services</a>
</li>
<li>
<a class="page-scroll" href="#about">About Us</a>
</li>
<li>
<a class="page-scroll" href="#customers">Customers</a>
</li>
<li>
<a class="page-scroll" href="#contact">Contact</a>
</li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container-fluid -->
</nav>
<!-- Header -->
<header>
<div class="container">
<div class="intro-text">
<div class="intro-lead-in">Enterprise Linux and FOSS Services</div>
<div class="intro-heading"><img src="img/logos/logo-btech.png" alt=""></div>
<a href="#services" class="page-scroll btn btn-xl">Services</a>
</div>
</div>
</header>
<!-- Services Section -->
<section id="services">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Services</h2>
Btech give a great Services.</h3>
</div>
</div>
<br>
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-users fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Training</h4>
<p class="text-muted">Btech provide training service because we understand that competences
is a lifetime business investment. Training topics that provided by
Btech including GNU/Linux, Open Source Software and Computer Networking. <a href="#portfolioModal4" class="portfolio-link" data-toggle="modal">Read more.</a></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-gear fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Development</h4>
<p class="text-muted">Btech provide application development service intended to conform with conditions, needs and process of your business. <a href="#portfolioModal5" class="portfolio-link" data-toggle="modal">Read more.</a></p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-support fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Solutions</h4>
<p class="text-muted">Btech provide support that makes your business running faster. We
provide solutions that you need such as system migration, implementation
of enterprise applications, and computer networking. <a href="#portfolioModal6" class="portfolio-link" data-toggle="modal">Read more.</a></p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">About Us</h2>
<h3 class="section-subheading text-muted">Together we do things easier.</h3>
<!--alamat-->
<div id="abouts">
<address>
<p>
<strong>Btech</strong> was developed from a vision of ICT utilization that efficient and environmental-friendly for companies that have main mission to utilize Linux and FOSS (Free/Open Source Software) as the tools. Established since middle of 2009, Btech always commits to give the best service for customers.
</p>
<p>
<strong>Btech</strong> has high productivity and innovation since it supported by capable and skillful human resources and reliable work infrastructure. Conducive office location and friendly atmosphere of work also supports <strong>Btech</strong> to be able to give solution on customer problems.
</p>
<p>
Another strength of <strong>Btech</strong> is good relation and interaction to other IT communities that have same vision, because Btech believes that together, we do things easier.
</p>
<p>
Services provided by <strong>Btech</strong> include comprehensive training with 3 main materials: Linux and Open Source Software, Computer Networking and Application Development, integrated IT solutions to be implemented in business environment, and applications development that conform with conditions, needs and process of your business.
</p>
</address>
</div>
<!--akhir alamat-->
</div>
</div>
</div>
</section>
<!-- Clients Aside -->
<section id="customers">
<aside class="clients">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Our Customers</h2>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://www.jamkrindo.com/" target="_blank">
<img src="img/logos/jamkrindo.png" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://www.telkom.co.id/" target="_blank">
<img src="img/logos/telkom.png" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://monfori.co.id/" target="_blank">
<img src="img/logos/monfori.jpg" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://www.ifes.org/countries/Indonesia.aspx" target="_blank">
<img src="img/logos/ifes.png" class="img-responsive img-centered" alt="">
</a>
</div>
</div>
</div>
</aside>
<!-- Clients Aside -->
<aside class="clients">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<a href="http://ccromseap.ipb.ac.id/" target="_blank">
<img src="img/logos/ccrom.png" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://cerindonesia.org/" target="_blank">
<img src="img/logos/cerindo.png" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://asuransi.relife.co.id/" target="_blank">
<img src="img/logos/relife.png" class="img-responsive img-centered" alt="">
</a>
</div>
<div class="col-md-3 col-sm-6">
<a href="http://www.bantuanhukum.or.id/" target="_blank">
<img src="img/logos/lbhj.png" class="img-responsive img-centered" alt="">
</a>
</div>
</div>
</div>
</aside>
</section>
<section id="contact">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Contact Us</h2>
<h3 class="section-subheading text-muted"></h3>
<!--alamat-->
<div id="address">
<address>
<p>
<strong>
<i class="fa fa-building"></i>
</strong>
PT Boer Technology
</p>
<p>
<strong>
<i class="fa fa-map-marker"></i>
Address:
</strong>
Perum Taman Cimanggu, Jl. Tanjung VIII Blok O6 No.14, Cimanggu, Bogor 16164
</p>
<p>
<strong>
<i class="fa fa-phone"></i>
Phone:
</strong>
+62-251-8340354
</p>
<p>
<strong>
<i class="fa fa-comment-o"></i>
Text/Whatsapp:
</strong>
+62-811-1118187
</p>
<p>
<strong>
<i class="fa fa-envelope"></i>
Mail:
</strong>
</p>
</address>
</div>
<!--akhir alamat-->
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-md-4">
<span class="copyright">Copyright © 2014 Btech</span>
</div>
<div class="col-md-4">
<ul class="list-inline social-buttons">
<li><a href="https://twitter.com/btechpt" targer="_blank"><i class="fa fa-twitter"></i></a>
</li>
<li><a href="https://www.linkedin.com/company/boer-technology" target="_blank"><i class="fa fa-linkedin"></i></a>
</li>
</ul>
</div>
<div class="col-md-4">
<ul class="list-inline quicklinks">
<li><a href="#">Privacy Policy</a>
</li>
<li><a href="#">Terms of Use</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Portfolio Modals -->
<!-- Use the modals below to showcase details about your portfolio projects! -->
<!-- Portfolio Modal 1 -->
<div class="portfolio-modal modal fade" id="portfolioModal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Basarnas Training</h2>
<p class="item-intro text-muted">GNU/Linux System Administration and Networking Training</p>
<img class="img-responsive" src="img/portfolio/training-big.jpg" alt="">
<p>Training in Basarnas about GNU/Linux system adminitration and networking training.</p>
<ul class="list-inline">
<li>Date: 2014</li>
<li>Client: Badan SAR Nasional (Basarnas)</li>
<li>Category: Trainings</li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 2 -->
<div class="portfolio-modal modal fade" id="portfolioModal2" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<h2>E-Office Jamkrindo</h2>
<p class="item-intro text-muted">Develop e-office system in Jamkrindo.</p>
<img class="img-responsive img-centered" src="img/portfolio/development-big.png" alt="">
<p>E-Office is a system that makes you can work anywhere anytime. In E-Office you can create a mail, disposition, and another work in your office.</p>
<ul class="list-inline">
<li>Date: 2014</li>
<li>Client: Jamkrindo</li>
<li>Category: Development</li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 3 -->
<div class="portfolio-modal modal fade" id="portfolioModal3" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Relife System Migration</h2>
<p class="item-intro text-muted">System migration to have a better perfomance.</p>
<img class="img-responsive img-centered" src="img/portfolio/migration.jpg" alt="">
<p>Migrate a mail server from exchange to zimbra collaboration suite. Migrate gateway server from ISA Server to Fortigate UTM Firewall. Migrate Active Directory from Windows Server 2003 to Windows Server 2012.
<ul class="list-inline">
<li>Date: 2014</li>
<li>Client: Relife</li>
<li>Category: Solutions</li>
</ul>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 4 -->
<div class="portfolio-modal modal fade" id="portfolioModal4" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Training</h2>
<p class="item-intro text-muted">Competences is a Lifetime Business Investment.</p>
<img class="img-responsive img-centered" src="img/portfolio/training.jpg" alt="">
<p>
<h3>Linux System</h3>
Linux Desktop Basic<br>
Linux System Basic<br>
Linux System Administration<br>
<h3>Linux System Networking</h3>
Linux System Network Administration<br>
Vyatta Integrated Service Firewall and Router<br>
Endian Security Gateways<br>
<h3>Linux Server Applications</h3>
Enterprise Linux Server Administration<br>
Enterprise Linux Server Security<br>
<h3>Linux Shell Programming</h3>
BASH Programming
<h3>Office Applications</h3>
LibreOffice Basic<br>
LibreOffice Advance<br>
DSP Human Resource Management System<br>
<h3>Computer Virtualization</h3>
Oracle VirtualBox and PHPVirtualBox<br>
KVM and oVirt<br>
XenServer and Xen Orchestra<br>
VMware vSphere Hypervisor (ESXi)<br>
OpenVZ and OVZ Web Panel<br>
Proxmox Virtual Environment<br>
<h3>Linux Certification Preparation</h3>
LPIC-1 101 Exam Preparation<br>
LPIC-1 102 Exam Preparation<br>
LPIC-2 201 Exam Preparation<br>
LPIC-2 202 Exam Preparation<br>
LPIC-3 300 Exam Preparation<br>
LPIC-3 303 Exam Preparation<br>
LPIC-3 304 Exam Preparation<br>
Red Hat System Administration I (RHCSA)<br>
Red Hat System Administration II (RHCSA)<br>
Red Hat System Administration III (RHCE)<br>
<h3>System Security</h3>
Penetration Testing with Kali Linux<br>
<h3>Linux Distribution Development</h3>
Debian Based Linux Distribution<br>
Red Hat Based Linux Distribution<br>
<h3>Other Additional Training</h3>
Cisco Certified Design Associate (CCDA)<br>
Cisco Certified Network Associate (CCNA) Routing and Switching<br>
CCNA Security<br>
Cisco Certified Design Professional (CCDP)<br>
Cisco Certified Netork Professional (CCNP) Routing and Switching<br>
CCNP Security<br>
</p>
<div class="modal-footer">
<center><button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close</button></center>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 5 -->
<div class="portfolio-modal modal fade" id="portfolioModal5" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Development</h2>
<p class="item-intro text-muted">Application Development.</p>
<img class="img-responsive img-centered" src="img/portfolio/development.jpg" alt="">
<p>
<strong>Btech</strong> provide application development service intended to conform with conditions, needs and process of your business.<br>
Type of the applications could be desktop based applications or web based applications. For more information on the application development provided by <strong>Btech</strong> or other questions please feel free to <a href="#contact">contact us.</a><br>
<h4>Application Development</h4>
Content Management System<br>
Linux Operating System Development<br>
Mobile Applications<br>
Human Resources Management System<br>
Library Management System<br>
SMS Management System<br>
Enterprise Resource Planning (ERP)<br>
Geographical Information System (GIS)<br>
Weather and Climate Research Applications<br>
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Portfolio Modal 6 -->
<div class="portfolio-modal modal fade" id="portfolioModal6" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<div class="close-modal" data-dismiss="modal">
<div class="lr">
<div class="rl">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="modal-body">
<!-- Project Details Go Here -->
<h2>Solutions</h2>
<p class="item-intro text-muted">Support That Makes Your Business Running Faster.</p>
<img class="img-responsive img-centered" src="img/portfolio/solutions.jpg" alt="">
<p>
<h3>Great Migration</h3>
Migrate from pirated OS and applications to Linux and FOSS<br>
Documents and database migration to opened format<br>
Hardware driver installation and performances optimization<br>
Proprietary-FOSS System Compatibility<br>
<h3>Implementation of Enterprise Applications</h3>
Enterprise Web Server<br>
Enterprise Mail and Messaging Server<br>
Enterprise Database Server<br>
Enterprise File Server<br>
Single Sign On Server<br>
Cloud Computing<br>
Enterprise Virtualization<br>
High Performance and High Availability Computer<br>
Enterprise Resource Planning (ERP)<br>
<h3>Computer Networking</h3>
Integrated Services Router<br>
Integrated Services Firewall<br>
Voice over IP<br>
Wireless Networking<br>
Virtual Private Network (VPN)<br>
Authentication Authorization Acoounting (AAA) / Proxy Server<br>
Intrusion Prevention System (IPS)<br>
Policy: Access Control, Quality of Services (QoS), Bandwidth Management<br>
Network Monitoring System<br>
System Penetration Testing<br>
</p>
<button type="button" class="btn btn-primary" data-dismiss="modal"><i class="fa fa-times"></i> Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery Version 1.11.0 -->
<script src="js/jquery-1.11.0.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Plugin JavaScript -->
<script src="js/jquery.easing.min.js"></script>
<script src="js/classie.js"></script>
<script src="js/cbpAnimatedHeader.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Custom Theme JavaScript -->
<script src="js/btech.js"></script>
</body>
</html>