How to use bootstrap container-fluid class inside HTML page to create Paragraph tag text.
In this tutorial we are creating <p> html tag with bootstrap class. So here is the complete step by step tutorial for Create p Paragraph tag in HTML using Bootstrap for Full Width.
How to Create p Paragraph tag in HTML using Bootstrap for Full Width.
Code for paragraph-full.html file.
<!doctype html> <html> <head> <meta charset="utf-8"> <title>Create p Paragraph tag in HTML using Bootstrap for Full Width</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <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.0/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> </head> <body> <div class="container-fluid"> <p>This is Paragraph tag text using Bootstrap.</p> </div> </body> </html>