06 - How to check Bootstrap Setup is Working or Not

Notes:

Testing is Bootstrap properly linked to an HTML page:

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bootstrap demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="bootstrap/css/bootstrap.min.css" type="text/css" rel="stylesheet">
</head>
<body>
<input type="button" value="Button1" class="btn btn-primary"/>
<input type="button" value="Button2" class="btn btn-warning"/>

<script src="jquery/jquery.min.js" type="text/javascript"></script>
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
</body>
</html>

Interview Questions: