How would I go about transforming the following standard HTML to a page that uses Bootstrap? I have attempted to include the require Bootstrap files in <?php include("bs.php"); ?>, but it does not work.
Contents of the BS.php are:
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
The one that I would like to use the Bootstrap Framwork on is the following:
<html>
<head>
<?php include("bscode.php"); ?>
<title>Add Data</title>
</head>
<body>
<a href="index_video.php">Home</a>
<br/><br/>
<form action="add_video2.php" method="post" name="formx">
<table width="25%" border="0">
<tr>
<td>Title</td>
<td><input type="text" name="title"></td>
</tr>
<tr>
<td>Embedded code</td>
<td><input type="text" name="embed"></td>
</tr>
<tr>
<td>Category</td>
<td><input type="text" name="cat"></td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="Submit" value="Add"></td>
</tr>
</table>
</form>
</body>
</html>