Basic HTML Template
Basic web page template
The following code is a normal web page template.
<!DOCTYPE html>/* ww w. j a v a2 s. co m*/
<html>
<head>
<title>title</title>
</head>
<body>
<h1>Hello, world! from java2s.com</h1>
</body>
</html>
With Bootstrap, we include the link to the CSS stylesheet and the JavaScript:
<!DOCTYPE html>/* w w w . ja v a 2 s. c o m*/
<html>
<head>
<title>Bootstrap Template</title>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>