The following code shows how to mark Text for Formatting.
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet"
href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<script type="text/javascript"
src="http://code.jquery.com/jquery.min.js"></script>
<script
src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<style type="text/css">
.bs-example {<!--from w w w .ja v a2 s . c o m-->
margin: 20px;
}
</style>
</head>
<body>
<div class="bs-example">
<p>
<b>This is bold text</b>
</p>
<p>
<big>This is big text</big>
</p>
<p>
<code>This is computer code</code>
</p>
<p>
<em>This is emphasized text</em>
</p>
<p>
<i>This is italic text</i>
</p>
<p>
<small>This is small text</small>
</p>
<p>
<strong>This is strongly emphasized text</strong>
</p>
<p>
This is <sub>subscript</sub> and <sup>superscript</sup>
</p>
<p>
<ins>This text is inserted to the document</ins>
</p>
<p>
<del>This text is deleted from the document</del>
</p>
</div>
</body>
</html>