forked from ooghenekaro/nodejs-webapp-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
35 lines (32 loc) · 1.66 KB
/
about.html
File metadata and controls
35 lines (32 loc) · 1.66 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
<!DOCTYPE html>
<head>
<title> About Us Page </title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
</head>
<body>
<div style="margin:6px;">
<nav class="navbar navbar-inverse navbar-static-top">
<div class="container">
<a class="navbar-brand" href="/"> About IBT Learning </a>
<ul class="nav navbar-nav">
<li>
<a href="/">Home</a>
</li>
<li class="active">
<a href="/about">About</a>
</li>
</ul>
</div>
</nav>
<div class="jumbotron" style="padding:40px;">
<h1>About Us</h1>
<strong><p>IBT Learning is a digital economy Instructor-led and career-oriented Bootcamp offering training to working professionals, career changers, and corporate institutions across industries and sectors. IBT Learning is an official training partner of IBM, AWS Partner Network, Linux Professional Institute, Comptia, EC-Council, and more. </p></strong>
<strong><p>Learn the skills that companies are looking for and land a job that you will love. At IBT, we are outcome driven and are not merely training you to bag certifications, we are training you for successful careers in tech.</p></strong>
<p><a class="btn btn-primary btn-lg" href="#" role="button">Start Learning</a></p>
</div>
</div>
</body>
</html>