<h1>Bootstrap heading 1</h1>
<h2>Bootstrap heading 2</h2>
<h3>Bootstrap heading 3</h3>
<h4>Bootstrap heading 4</h4>
<h5>Bootstrap heading 5</h5>
<h6> Bootstrap heading 6</h6>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
Use the mark element to highlight text.
<!DOCTYPE html>
<html>
<head>
<title>Alignment classes</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js">
</script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<p class="text-left">Left aligned text.</p>
<p class="text-center">Center aligned text.</p>
<p class="text-right">Right aligned text.</p>
<p class="text-justify">Justified text.</p>
<p class="text-nowrap">No wrap text.</p>
</body>
</html>
Left aligned text.
Center aligned text.
Right aligned text.
Justified text.
No wrap text.
<!DOCTYPE html>
<html>
<head>
<title>Abbreviations</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js">
</script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<abbr title="Hyper Text Markup Language">HTML</abbr><br>
<abbr title="Cascading Style Sheet">CSS</abbr><br>
<abbr title="World Wide Web">WWW</abbr>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Address</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js">
</script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<address>
<strong>Free Time Learning.</strong><br>
Gudur, Nellore<br>
Andhra Pradesh, India, PIN :524410<br>
<abbr title="Phone">Ph:</abbr> +919963666068
</address>
<address>
<strong>Email :</strong><br>
<a href="mailto:info@freetimelearning.com">
info@freetimelearning.com
</a>
</address>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Blackquote</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js">
</script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<blockquote>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry.Lorem Ipsum has been the industry's standard dummy text
ever since the 1500s.
</p>
</blockquote>
</body>
</html>
Lorem Ipsum is simply dummy text of the printing and typesetting industry.Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.
<!DOCTYPE html>
<html>
<head>
<title>Lists</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<h4>Ordered List</h4>
<ol>
<li>Sample text 1</li>
<li>Sample text 2</li>
<li>Sample text 3</li>
</ol>
<h4>UnOrdered List</h4>
<ul>
<li>Sample text 1</li>
<li>Sample text 2</li>
<li>Sample text 3</li>
</ul>
<h4>Unstyled List</h4>
<ul class = "list-unstyled">
<li>Sample text 1</li>
<li>Sample text 2</li>
<li>Sample text 3</li>
</ul>
<h4>Example of Definition List</h4>
<dl>
<dt>Description 1</dt>
<dd>Sample text 1</dd>
<dt>Description 2</dt>
<dd>Sample text 2</dd>
</dl>
</body>
</html>