HTML:

Defines data and structure of a page using elements under html.
CSS:

Defines how the data and elements actually looks and behave when interact with them.
JS:

This is actually programming language of a web know as java script.
Bootstrap is a front-end development framework that enables developers & designers to quickly build fully responsive websites. The framework contains global CSS settings with built-in components and extensible classes in the form of typography, navigation, buttons,form,tabbing and much more.
Bootstrap was originally developed by former Twitter employees Mark Otto and Jacob Thornton, as an internal development tool to improve consistency and efficiency of web page.
It was in August 2011, released as a open source project on github and become a most popular repository platform.
Installation is very easy, just download the source file of bootstrap and upload on server and just put the references or links of available files into your header. The installation process work is covered with that work.
example-
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="link of your file" > (this is for .css file)
<!-- Latest compiled and minified JavaScript --> <script src="link of .js file" ></script>
You should remember this format to start ..
<!DOCTYPE html>
<html>
<head>
<title>Title Name</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
<style>
.clr{
color:red;
background-color:yellow;
}
#code{
font-size:12px;
}
</style>
<div style="color:red,margin:12px 0 0 0"></div>
<link href=”link of your file” rel=”stylesheet” type=”text/css”/>
<script type="text/javascript">
$(document).ready(function(){
Your code here.....
});
</script>
<script src="js file address" type="text/javascript" ></script>
Javascript plugin:
You should use CDN links also..like
For CSS-
<link href=”https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css” rel=”stylesheet”/>
For Javascript File-
<script type=”text/javascript” src=”https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js”></script>
Awadhesh Kumar
]]>